Compare commits

..

No commits in common. "7963e19430ed5eb52c81ef8d762c3ff3d1547379" and "f158ec32396ca9f6709a69794782776aa5a33f6e" have entirely different histories.

2 changed files with 14 additions and 10 deletions

View file

@ -36,13 +36,12 @@ spec:
containers:
- name: goff
image: gofeatureflag/go-feature-flag:latest
command:
- /go-feature-flag
- --config
- /goff/config.yaml
command: ["/go-feature-flag", "--config", "/goff/config.yaml"]
volumeMounts:
- name: configs
mountPath: /goff/
- name: config
mountPath: /goff/config.yaml
- name: default-flags
mountPath: /goff/default-flags.yaml
ports:
- name: http
protocol: TCP
@ -64,9 +63,12 @@ spec:
periodSeconds: 10
terminationGracePeriodSeconds: 1200
volumes:
- name: configs
- name: config
configMap:
name: goff-configs
name: goff-relay-config
- name: default-flags
configMap:
name: default-flags
---
apiVersion: networking.k8s.io/v1

View file

@ -3,7 +3,9 @@ kind: Kustomization
resources:
- deployment.yaml
configMapGenerator:
- name: goff-configs
- name: goff-relay-config
files:
- relay-config.yaml
- name: default-flags
files:
- config.yaml=relay-config.yaml
- default-flags.yaml