diff options
author | yuryn <Yury.Novitsky@Amdocs.com> | 2017-09-04 19:03:51 +0300 |
---|---|---|
committer | Yury Novitsky <Yury.Novitsky@Amdocs.com> | 2017-09-05 15:59:52 +0000 |
commit | 10037b8cee505885c16f59a72a56c46ad5492275 (patch) | |
tree | 99542b104db9baf1730f5ede886dc7342427279a /kubernetes/aai/templates/aai-zookeeper-deployment.yaml | |
parent | 6fcd7aa12de90eb121160146e0d1a8d49d75a2d1 (diff) |
Use DMaaP from message-router
Remove AAI DMaaP (with its zookeeper and kafka) and adjust AAI configuration to work with the common ONAP DMaaP from message-router project
Change-Id: Ia9a4348d2ad28623ddc0e1c149ef35d33db90fb4
Issue-ID: OOM-65
Signed-off-by: yuryn <Yury.Novitsky@Amdocs.com>
Diffstat (limited to 'kubernetes/aai/templates/aai-zookeeper-deployment.yaml')
-rw-r--r-- | kubernetes/aai/templates/aai-zookeeper-deployment.yaml | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/kubernetes/aai/templates/aai-zookeeper-deployment.yaml b/kubernetes/aai/templates/aai-zookeeper-deployment.yaml deleted file mode 100644 index 7b6b4e138b..0000000000 --- a/kubernetes/aai/templates/aai-zookeeper-deployment.yaml +++ /dev/null @@ -1,36 +0,0 @@ -apiVersion: extensions/v1beta1 -kind: Deployment -metadata: - name: aai-zookeeper - namespace: "{{ .Values.nsPrefix }}-aai" -spec: - selector: - matchLabels: - app: aai-zookeeper - template: - metadata: - labels: - app: aai-zookeeper - name: aai-zookeeper - spec: - containers: - - image: "{{ .Values.image.aaiZookeeperImage }}:{{ .Values.image.aaiZookeeperVersion }}" - imagePullPolicy: {{ .Values.pullPolicy }} - name: aai-zookeeper - volumeMounts: - - mountPath: /opt/zookeeper-3.4.9/data/ - name: aai-zookeeper-data - ports: - - containerPort: 2181 - readinessProbe: - tcpSocket: - port: 2181 - initialDelaySeconds: 5 - periodSeconds: 10 - volumes: - - name: aai-zookeeper-data - hostPath: - path: "/dockerdata-nfs/{{ .Values.nsPrefix }}/aai/message-router/dcae-startup-vm-message-router/docker_files/data-zookeeper" - restartPolicy: Always - imagePullSecrets: - - name: "{{ .Values.nsPrefix }}-docker-registry-key" |