OpenShift Service Operations

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

Internal

Create a Service

Use a template similar to https://github.com/NovaOrdis/playground/blob/master/openshift/templates/eap7-service-template.yaml.

then

oc process -p APPLICATION_NAME=my-app-name -p CLUSTER_IP=<cluster-ip-value> -f ./novaordis-service-template.yaml | oc create -f -

The only method to find a valid cluster IP I could think of was to run oc new-app jenkins-ephemeral in the target project and read the cluster IP from the newly created service definition.

DID NOT WORK