123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- image:
- repository: traefik/whoami
- pullPolicy: IfNotPresent
- tag: latest
- service:
- main:
- enabled: true
- primary: true
- ports:
- main:
- enabled: true
- primary: true
- protocol: http
- port: 8080
- workload:
- main:
- enabled: true
- primary: true
- type: Deployment
- podSpec:
- containers:
- main:
- enabled: true
- primary: true
- args:
- - --port
- - "8080"
- probes:
- liveness:
- enabled: true
- type: http
- port: "{{ .Values.service.main.ports.main.port }}"
- readiness:
- enabled: true
- type: http
- port: "{{ .Values.service.main.ports.main.port }}"
- startup:
- enabled: true
- type: http
- port: "{{ .Values.service.main.ports.main.port }}"
- workload2:
- enabled: true
- primary: false
- type: Deployment
- podSpec:
- containers:
- main:
- enabled: true
- primary: true
- args:
- - --port
- - "8080"
- probes:
- liveness:
- enabled: true
- type: http
- port: "{{ .Values.service.main.ports.main.port }}"
- readiness:
- enabled: true
- type: http
- port: "{{ .Values.service.main.ports.main.port }}"
- startup:
- enabled: true
- type: http
- port: "{{ .Values.service.main.ports.main.port }}"
- rbac:
- main:
- enabled: true
- primary: true
- clusterWide: true
- allServiceAccounts: true
- labels:
- key: value
- key1: value1
- annotations:
- key: value
- key1: value1
- rules:
- - apiGroups:
- - ""
- resources:
- - services
- - endpoints
- - secrets
- verbs:
- - get
- - list
- - watch
- - apiGroups:
- - ""
- resources:
- - pods
- verbs:
- - get
- - list
- - watch
- serviceAccount:
- sa-name:
- enabled: true
- primary: true
- labels:
- key: value
- key2: value
- annotations:
- key: value
- key2: value
- other-sa-name:
- enabled: true
- targetSelector:
- - workload2
|