diff options
author | efiacor <fiachra.corcoran@est.tech> | 2023-02-17 07:47:55 +0000 |
---|---|---|
committer | efiacor <fiachra.corcoran@est.tech> | 2023-02-17 18:59:01 +0000 |
commit | 7009bc0f98304fe90aa10549eaeeb5ae50204fbb (patch) | |
tree | 37221bd84486308fc16bb930d9e07ae42d03dcee /kubernetes/cli/templates/configmap.yaml | |
parent | 3afce3d632a64c5f29056e069c296782795553a5 (diff) |
[CLI] Remove aaf dependency
Remove aaf dependency from CLI
Remove NodePort from CLI
Signed-off-by: efiacor <fiachra.corcoran@est.tech>
Change-Id: Ia9f4f3417aff502a195a5849fe2e56243ba9c54b
Issue-ID: OOM-3096
Diffstat (limited to 'kubernetes/cli/templates/configmap.yaml')
-rw-r--r-- | kubernetes/cli/templates/configmap.yaml | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/kubernetes/cli/templates/configmap.yaml b/kubernetes/cli/templates/configmap.yaml index ae515a0ec5..a4c636f0e4 100644 --- a/kubernetes/cli/templates/configmap.yaml +++ b/kubernetes/cli/templates/configmap.yaml @@ -1,5 +1,6 @@ {{/* # Copyright © 2021 Orange +# Modifications Copyright © 2023 Nordix Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -16,13 +17,6 @@ apiVersion: v1 kind: ConfigMap -metadata: - name: {{ include "common.fullname" . }}-lighttpd - namespace: {{ include "common.namespace" . }} - labels: - app: {{ include "common.name" . }} - chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} - release: {{ include "common.release" . }} - heritage: {{ .Release.Service }} +metadata: {{- include "common.resourceMetadata" . | nindent 2 }} data: -{{ tpl (.Files.Glob "resources/configuration/*").AsConfig . | indent 2 }}
\ No newline at end of file +{{ tpl (.Files.Glob "resources/configuration/*").AsConfig . | indent 2 }} |