OpenShift Service Operations

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

Internal

Overview

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 -f ./novaordis-service-template.yaml | oc create -f -

DID NOT WORK, got:

error: unable to process invalid resource "."

I worked around by using the web UI and

apiVersion: v1
kind: Service
metadata:
  annotations:
    openshift.io/generated-by: novaordis-service-template
  labels:
    app: novaordis-session-servlet
    application: novaordis-session-servlet
    template: novaordis-service-template
  name: novaordis-session-servlet
spec:
  ports:
  - port: 8080
    protocol: TCP
    targetPort: 8080
  selector:
    deploymentConfig: novaordis-session-servlet
  sessionAffinity: None
  type: ClusterIP
status:

Integrate an External Service

https://docs.openshift.com/container-platform/latest/dev_guide/integrating_external_services.html#dev-guide-integrating-external-services

An external service represents an instance running outside OpenShift.