diff options
author | Ritu Sood <ritu.sood@intel.com> | 2020-06-19 13:18:14 -0700 |
---|---|---|
committer | Ritu Sood <ritu.sood@intel.com> | 2020-06-19 13:28:08 -0700 |
commit | 1f6c1d5d3750fbcfaadd1788ac47f28dd3708423 (patch) | |
tree | 000df495e815c574850fe0ee4585dcb378d0fe75 /deployments | |
parent | 7b860ae60bf9686b449ab2fe3f18c33944bdd71c (diff) |
Update to fix inconsistent naming
Dockerfile and Kunernetes resource files
use inconsistent names. This patch is to
fix inconsistent names.
Issue-ID: MULTICLOUD-1065
Signed-off-by: Ritu Sood <ritu.sood@intel.com>
Change-Id: If7ea6d9ecf55196be5400ea5d2b4d3ce42f99b0f
Diffstat (limited to 'deployments')
-rw-r--r-- | deployments/kubernetes/onap4k8s.yaml | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/deployments/kubernetes/onap4k8s.yaml b/deployments/kubernetes/onap4k8s.yaml index 302fd53e..1bd4ce94 100644 --- a/deployments/kubernetes/onap4k8s.yaml +++ b/deployments/kubernetes/onap4k8s.yaml @@ -52,15 +52,15 @@ spec: spec: containers: - name: orchestrator - image: rtsood/mco:0.0.1 + image: rtsood/emco:0.0.1 imagePullPolicy: IfNotPresent - command: ["/opt/mco/entrypoint", "mco"] - workingDir: /opt/mco + command: ["/opt/emco/entrypoint", "orchestrator"] + workingDir: /opt/emco ports: - containerPort: 9015 volumeMounts: - name: config - mountPath: /opt/mco/config.json + mountPath: /opt/emco/config.json subPath: config.json volumes: - name: config @@ -123,15 +123,15 @@ spec: spec: containers: - name: ncm - image: rtsood/mco:0.0.1 + image: rtsood/emco:0.0.1 imagePullPolicy: IfNotPresent - command: ["/opt/mco/entrypoint", "ncm"] - workingDir: /opt/mco + command: ["/opt/emco/entrypoint", "ncm"] + workingDir: /opt/emco ports: - containerPort: 9031 volumeMounts: - name: config - mountPath: /opt/mco/config.json + mountPath: /opt/emco/config.json subPath: config.json volumes: - name: config @@ -193,15 +193,15 @@ spec: spec: containers: - name: rsync - image: rtsood/mco:0.0.1 + image: rtsood/emco:0.0.1 imagePullPolicy: IfNotPresent - command: ["/opt/mco/entrypoint", "rsync"] - workingDir: /opt/mco + command: ["/opt/emco/entrypoint", "rsync"] + workingDir: /opt/emco ports: - containerPort: 9041 volumeMounts: - name: config - mountPath: /opt/mco/config.json + mountPath: /opt/emco/config.json subPath: config.json volumes: - name: config @@ -267,16 +267,16 @@ spec: spec: containers: - name: ovnaction - image: rtsood/mco:0.0.1 + image: rtsood/emco:0.0.1 imagePullPolicy: IfNotPresent - command: ["/opt/mco/entrypoint", "ovnaction"] - workingDir: /opt/mco + command: ["/opt/emco/entrypoint", "ovnaction"] + workingDir: /opt/emco ports: - containerPort: 9053 - containerPort: 9051 volumeMounts: - name: config - mountPath: /opt/mco/config.json + mountPath: /opt/emco/config.json subPath: config.json volumes: - name: config @@ -339,15 +339,15 @@ spec: spec: containers: - name: clm - image: rtsood/mco:0.0.1 + image: rtsood/emco:0.0.1 imagePullPolicy: IfNotPresent - command: ["/opt/mco/entrypoint", "clm"] - workingDir: /opt/mco + command: ["/opt/emco/entrypoint", "clm"] + workingDir: /opt/emco ports: - containerPort: 9061 volumeMounts: - name: config - mountPath: /opt/mco/config.json + mountPath: /opt/emco/config.json subPath: config.json volumes: - name: config |