You are looking at the documentation of a prior release. To read the documentation of the latest release, please
visit here.
New to Voyager? Please start here.
Pod Annotations
You can specify annotations applied to HAProxy pods through ingress annotation ingress.appscode.com/annotations-pod
. You have to provide it as a json formatted string to string map.
Ingress Example
apiVersion: voyager.appscode.com/v1
kind: Ingress
metadata:
name: test-ingress
namespace: default
annotations:
ingress.appscode.com/annotations-pod: '{"foo": "bar", "bar":"foo"}'
spec:
rules:
- host: voyager.appscode.test
http:
paths:
- path: /foo
backend:
service:
name: test-server
port:
number: 80
It will add following annotations to HAProxy pods:
annotations:
bar: foo
foo: bar
ingress.appscode.com/last-applied-annotation-keys: bar,foo
$ kubectl get pods voyager-test-ingress-6dbdbdf4f7-9f6w7 -o=jsonpath='{.metadata.annotations}' | tr " " "\n"
map[foo:bar
bar:foo
ingress.appscode.com/last-applied-annotation-keys:foo,bar]