diff options
author | Ramesh Parthasarathy <ramesh.parthasarathy@att.com> | 2020-05-20 22:47:57 +0000 |
---|---|---|
committer | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-05-29 07:01:55 +0000 |
commit | 3aae7c0efab5c3ffb38c837f7451efcbbe5c60a0 (patch) | |
tree | 51c66fd2cc4a30fe871b5be2e076a7138713f555 /kubernetes/so/charts/so-appc-orchestrator/templates/configmap.yaml | |
parent | 18355a8cedae7b86d9af024870167fcd2422cdd7 (diff) |
Add new SO component so-appc-orchestrator to OOM
- This is a new component with SO
- This component polls bpmn for any app-c related
tasks. If there is one, it will pick up the task,
execute the task and provide task status to bpmn
- SO code related to this functionality has already
been delivered by Elena.
Issue-ID: SO-2903
Signed-off-by: Ramesh Parthasarathy(rp6768)<ramesh.parthasarathy@att.com>
Change-Id: I1bb3afd437f420304c41255560fbe13106eefb83
Diffstat (limited to 'kubernetes/so/charts/so-appc-orchestrator/templates/configmap.yaml')
-rwxr-xr-x | kubernetes/so/charts/so-appc-orchestrator/templates/configmap.yaml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/kubernetes/so/charts/so-appc-orchestrator/templates/configmap.yaml b/kubernetes/so/charts/so-appc-orchestrator/templates/configmap.yaml new file mode 100755 index 0000000000..8c0ee290ce --- /dev/null +++ b/kubernetes/so/charts/so-appc-orchestrator/templates/configmap.yaml @@ -0,0 +1,41 @@ +# Copyright © 2020 AT&T USA +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +apiVersion: v1 +data: + LOG_PATH: {{ index .Values.logPath }} + APP: {{ index .Values.app }} + ACTIVE_PROFILE: {{ include "helpers.profileProperty" (dict "condition" .Values.global.security.aaf.enabled "value1" "aaf" "value2" "basic")}} +kind: ConfigMap +metadata: + name: {{ include "common.fullname" . }}-configmap + namespace: {{ include "common.namespace" . }} + labels: + app: {{ include "common.name" . }} + chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} + release: {{ include "common.release" . }} + heritage: {{ .Release.Service }} +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "common.fullname" . }}-app-configmap + namespace: {{ include "common.namespace" . }} + labels: + app: {{ include "common.name" . }} + chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} + release: {{ include "common.release" . }} + heritage: {{ .Release.Service }} +data: +{{ tpl (.Files.Glob "resources/config/overrides/*").AsConfig . | indent 2 }} |