Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 1 | {{/* |
| 2 | # Copyright © 2017 Amdocs, Bell Canada |
| 3 | # Modifications Copyright © 2019 AT&T |
Jack Lucas | 838ce7e | 2023-07-18 17:52:13 -0400 | [diff] [blame] | 4 | # Copyright (c) 2021-2023 J. F. Lucas. All rights reserved. |
ajay_dp001 | cf5232a | 2021-04-13 20:48:07 +0530 | [diff] [blame] | 5 | # Copyright (c) 2021 Nordix Foundation. |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 6 | # |
| 7 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | # you may not use this file except in compliance with the License. |
| 9 | # You may obtain a copy of the License at |
| 10 | # |
| 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | # |
| 13 | # Unless required by applicable law or agreed to in writing, software |
| 14 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | # See the License for the specific language governing permissions and |
| 17 | # limitations under the License. |
| 18 | */}} |
| 19 | |
| 20 | {{/* |
| 21 | dcaegen2-services-common.configMap: |
| 22 | This template produces Kubernetes configMap(s) needed by a |
| 23 | DCAE microservice. |
| 24 | |
| 25 | The template expects the full chart context as input. A chart for a |
| 26 | DCAE microservice references this template using: |
| 27 | {{ include "dcaegen2-services-common.configMap" . }} |
| 28 | The template directly references data in .Values, and indirectly (through its |
| 29 | use of templates from the ONAP "common" collection) references data in |
| 30 | .Release. |
| 31 | |
| 32 | The template always produces a configMap containing the microservice's |
Jack Lucas | f86f629 | 2022-06-08 09:12:29 -0400 | [diff] [blame] | 33 | initial configuration data. (See the documentation for |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 34 | dcaegen2-services-common.microserviceDeployment for more details.) |
| 35 | |
Jack Lucas | 838ce7e | 2023-07-18 17:52:13 -0400 | [diff] [blame] | 36 | If the microservice is publishing to one or more Data Router (DR) feeds, the |
Jack Lucas | f86f629 | 2022-06-08 09:12:29 -0400 | [diff] [blame] | 37 | template produces a configMap containing the information needed to |
| 38 | provision the feed(s). An init container performs the provisioning. |
| 39 | |
Jack Lucas | f86f629 | 2022-06-08 09:12:29 -0400 | [diff] [blame] | 40 | If the microservice acts as a DR subscriber for one or more feeds, the |
| 41 | template produces a configMap containing the information needed to |
| 42 | provision the subscribeer(s). An init container performs the provisioning. |
| 43 | |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 44 | */}} |
| 45 | |
| 46 | {{- define "dcaegen2-services-common.configMap" -}} |
Jack Lucas | b880f89 | 2021-06-07 16:40:31 -0400 | [diff] [blame] | 47 | {{- $appConf := .Values.applicationConfig | default (dict) -}} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 48 | apiVersion: v1 |
| 49 | kind: ConfigMap |
| 50 | metadata: |
| 51 | name: {{ include "common.fullname" . }}-application-config-configmap |
| 52 | namespace: {{ include "common.namespace" . }} |
| 53 | labels: {{ include "common.labels" . | nindent 6 }} |
| 54 | data: |
| 55 | application_config.yaml: | |
Jack Lucas | b880f89 | 2021-06-07 16:40:31 -0400 | [diff] [blame] | 56 | {{ $appConf | toYaml | indent 4 }} |
Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame] | 57 | |
ajay_dp001 | cf5232a | 2021-04-13 20:48:07 +0530 | [diff] [blame] | 58 | {{- if .Values.drFeedConfig }} |
| 59 | --- |
| 60 | apiVersion: v1 |
| 61 | kind: ConfigMap |
| 62 | metadata: |
| 63 | name: {{ include "common.fullname" . }}-feeds-config |
| 64 | namespace: {{ include "common.namespace" . }} |
| 65 | labels: {{ include "common.labels" . | nindent 6 }} |
| 66 | data: |
| 67 | {{- range $i, $feed := .Values.drFeedConfig }} |
| 68 | feedConfig-{{$i}}.json: |- |
Jack Lucas | 838ce7e | 2023-07-18 17:52:13 -0400 | [diff] [blame] | 69 | { |
| 70 | "name": {{ $feed.feedName | quote }}, |
| 71 | "version": {{ $feed.feedVersion | quote }}, |
| 72 | "description": {{ $feed.feedDescription | default "None" | quote }}, |
| 73 | "authorization": { |
| 74 | "classification": {{ $feed.classification | quote }}, |
| 75 | "endpoint_addrs": [ |
| 76 | ], |
| 77 | "endpoint_ids": [ |
| 78 | { |
| 79 | "id": {{ $feed.publisher.username | quote }}, |
| 80 | "password": {{ $feed.publisher.password | quote }} |
| 81 | } |
| 82 | ] |
| 83 | } |
| 84 | } |
ajay_dp001 | cf5232a | 2021-04-13 20:48:07 +0530 | [diff] [blame] | 85 | {{- end }} |
| 86 | {{- end }} |
| 87 | |
| 88 | {{- if .Values.drSubConfig }} |
| 89 | --- |
| 90 | apiVersion: v1 |
| 91 | kind: ConfigMap |
| 92 | metadata: |
| 93 | name: {{ include "common.fullname" . }}-drsub-config |
| 94 | namespace: {{ include "common.namespace" . }} |
| 95 | labels: {{ include "common.labels" . | nindent 6 }} |
| 96 | data: |
| 97 | {{- range $i, $drsub := .Values.drSubConfig }} |
| 98 | drsubConfig-{{$i}}.json: |- |
Jack Lucas | 838ce7e | 2023-07-18 17:52:13 -0400 | [diff] [blame] | 99 | { |
| 100 | "feed": { |
| 101 | "name": {{ $drsub.feedName | quote }}, |
| 102 | "version": {{ $drsub.feedVersion | quote }} |
| 103 | }, |
| 104 | "delivery": { |
| 105 | "url": {{ $drsub.deliveryURL | quote }}, |
| 106 | "user": {{ $drsub.username | quote }}, |
| 107 | "password": {{ $drsub.userpwd | quote }}, |
| 108 | "use100": {{ $drsub.use100 | default false }} |
| 109 | }, |
| 110 | "metadataOnly": {{ $drsub.metadataOnly | default false }}, |
| 111 | "groupid": {{ $drsub.groupId | default 0 }}, |
| 112 | "follow_redirect": {{ $drsub.followRedirect | default true }}, |
| 113 | "privileged_subscriber": {{ $drsub.privilegedSubscriber | default false }}, |
| 114 | "decompress": {{ $drsub.decompress | default false }} |
| 115 | } |
ajay_dp001 | cf5232a | 2021-04-13 20:48:07 +0530 | [diff] [blame] | 116 | {{- end }} |
| 117 | {{- end }} |
Maciej Wereski | 7000a7c | 2021-12-16 12:24:06 +0100 | [diff] [blame] | 118 | {{- end }} |