Configuration for Notification

  1. Create a new file oes-notification-service.yaml using the below configurations:

apiVersion: v1
kind: Service
metadata:
  annotations:
  name: oes-notification-service
  namespace: <opsmxargo>
spec:
  internalTrafficPolicy: Cluster
  ipFamilies:
  - IPv4
  ipFamilyPolicy: SingleStack
  ports:
  - name: notificationservice
    port: 8099
    protocol: TCP
    targetPort: 8099
  selector:
    app: oes
    component: notificationservice
  sessionAffinity: None
  type: ClusterIP

Update the namespace in the above configuration and apply by executing the below command:

  1. Create a new file oes-notification-service-config.yaml using below configurations:

You need to decode the value given in the notification-service-local.yml and needs to update your username, password and redis service name, and encode and keep it in the above configurations.

The decoded configuration looks like as shown below:

Update the namespace and apply by executing the below command:

  1. Create a new file oes-notification-service-deployment.yaml using the below configurations:

Update the namespace and apply by executing the below command

  1. Add the following code to the oes-carina-config secret:

  1. Add the following code to the oes-gate-config secret:

Last updated