eks: Relabel instance with node name for CNI DaemonSet

This commit is contained in:
Maxime Brunet 2021-07-17 11:28:38 -07:00
parent ae12388b33
commit 7394929c76
No known key found for this signature in database
GPG Key ID: 757B11B65F872567

View File

@ -27,7 +27,20 @@
}, },
spec: { spec: {
ports: [ ports: [
{ name: 'cni-metrics-port', port: 61678, targetPort: 61678 }, {
name: 'cni-metrics-port',
port: 61678,
targetPort: 61678,
relabelings: [
{
action: 'replace',
regex: '(.*)',
replacement: '$1',
sourceLabels: ['__meta_kubernetes_pod_node_name'],
targetLabel: 'instance',
},
],
},
], ],
selector: { 'app.kubernetes.io/name': 'aws-node' }, selector: { 'app.kubernetes.io/name': 'aws-node' },
clusterIP: 'None', clusterIP: 'None',