diff options
author | Jack Lucas <jflos@sonoris.net> | 2021-11-01 16:54:12 -0400 |
---|---|---|
committer | Jack Lucas <jflos@sonoris.net> | 2021-11-19 10:05:00 -0500 |
commit | ec09fd5a219e49e1be9eaddf9e2cb2f7f5d2f662 (patch) | |
tree | 109677364dc1281a6b2400d51ed93608ab7ebad1 /kubernetes/dcaegen2/components/dcae-config-binding-service | |
parent | 4eb609904c7882b95ff1122b911bbe42feaaee21 (diff) |
[DCAEGEN2] Updates for R10
By default, disable all dcaegen2 components except
config-binding-service, healthcheck,
and ves-openapi-manager.
Fix DNS name for the ONAP consul instance.
Move mongodb dependency from dcae-bootstrap to dcae-tcagen2.
Fix the generation of the JSON list of expected components for the
healthcheck services. (Previously could have a spurious leading
",")
Update healthcheck-container version to 2.3.0 for
logging enhancements and updated base image.
Issue-ID: DCAEGEN2-2968
Issue-ID: DCAEGEN2-2958
Issue-ID: DCAEGEN2-2983
Signed-off-by: Jack Lucas <jflos@sonoris.net>
Change-Id: I4bcce1d3e43e2e5c7cc2c3179870de72b55d5d2e
Diffstat (limited to 'kubernetes/dcaegen2/components/dcae-config-binding-service')
-rw-r--r-- | kubernetes/dcaegen2/components/dcae-config-binding-service/templates/deployment.yaml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/kubernetes/dcaegen2/components/dcae-config-binding-service/templates/deployment.yaml b/kubernetes/dcaegen2/components/dcae-config-binding-service/templates/deployment.yaml index c7e1d70030..171fc7c807 100644 --- a/kubernetes/dcaegen2/components/dcae-config-binding-service/templates/deployment.yaml +++ b/kubernetes/dcaegen2/components/dcae-config-binding-service/templates/deployment.yaml @@ -2,6 +2,7 @@ #============LICENSE_START======================================================== # ================================================================================ # Copyright (c) 2019 AT&T Intellectual Property. All rights reserved. +# Copyright (c) 2021 J. F. Lucas. All rights reserved. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -106,7 +107,7 @@ spec: mountPath: /opt/tls env: - name: CONSUL_HOST - value: consul.{{ include "common.namespace" . }} + value: consul-server-ui.{{ include "common.namespace" . }} - name: USE_HTTPS value: "1" - name: HTTPS_CERT_PATH @@ -154,7 +155,7 @@ spec: mountPath: /opt/logs env: - name: CONSUL_HOST - value: consul.{{ include "common.namespace" . }} + value: consul-server-ui.{{ include "common.namespace" . }} - name: {{ include "common.name" . }}-fb-onap-i image: {{ include "repositoryGenerator.image.logging" . }} imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |