16 lines
334 B
YAML
16 lines
334 B
YAML
version: "3.8"
|
|
services:
|
|
whoami:
|
|
deploy:
|
|
mode: replicated
|
|
replicas: 1
|
|
labels:
|
|
test-label: '{{.Values.testLabelValue}}'
|
|
image: traefik/whoami
|
|
ports:
|
|
- mode: ingress
|
|
target: 80
|
|
published: 8080
|
|
protocol: tcp
|
|
environment:
|
|
test_env: '{{.Values.testEnvValue}}' |