Skip to content

Commit

Permalink
Configmap shall not be generated (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
t-persson authored Mar 7, 2024
1 parent 3dd2bdb commit 5017748
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
8 changes: 8 additions & 0 deletions manifests/base/configmap.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: etos-suite-runner
labels:
app.kubernetes.io/name: etos-suite-starter
data:
ETR_VERSION:
16 changes: 13 additions & 3 deletions manifests/base/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

resources:
- ./configmap.yaml

configMapGenerator:
- name: etos-suite-starter
literals:
- SUITE_RUNNER=registry.nordix.org/eiffel/etos-suite-runner:7c392331
- LOG_LISTENER=registry.nordix.org/eiffel/etos-log-listener:7c392331
- name: etos-suite-runner
literals:
- ETR_VERSION="3.4.0"

patches:
- target:
name: etos-suite-runner
kind: ConfigMap
patch: |-
- op: add
path: /data/ETR_VERSION
value: 3.4.0

0 comments on commit 5017748

Please sign in to comment.