mirror of https://github.com/kubernetes/kops.git
cilium: Add unreachable route for pod IP on deletion option
When a pod is deleted, the route to its IP is replaced with an unreachable route. When a pod is created, the route is replaced with a route to the pod veth (so if an unreachable existed, it's replaced). Ref: - https://github.com/cilium/cilium/pull/18505
This commit is contained in:
parent
68705f39c9
commit
484bde5b9b
|
@ -4887,6 +4887,10 @@ spec:
|
||||||
enableTracing:
|
enableTracing:
|
||||||
description: EnableTracing is unused.
|
description: EnableTracing is unused.
|
||||||
type: boolean
|
type: boolean
|
||||||
|
enableUnreachableRoutes:
|
||||||
|
description: 'EnableUnreachableRoutes enables unreachable
|
||||||
|
routes on pod deletion. Default: false'
|
||||||
|
type: boolean
|
||||||
enableipv4:
|
enableipv4:
|
||||||
description: EnableIpv4 is unused.
|
description: EnableIpv4 is unused.
|
||||||
type: boolean
|
type: boolean
|
||||||
|
|
|
@ -473,6 +473,9 @@ type CiliumNetworkingSpec struct {
|
||||||
// EnableRemoteNodeIdentity enables the remote-node-identity.
|
// EnableRemoteNodeIdentity enables the remote-node-identity.
|
||||||
// Default: true
|
// Default: true
|
||||||
EnableRemoteNodeIdentity *bool `json:"enableRemoteNodeIdentity,omitempty"`
|
EnableRemoteNodeIdentity *bool `json:"enableRemoteNodeIdentity,omitempty"`
|
||||||
|
// EnableUnreachableRoutes enables unreachable routes on pod deletion.
|
||||||
|
// Default: false
|
||||||
|
EnableUnreachableRoutes *bool `json:"enableUnreachableRoutes,omitempty"`
|
||||||
// Hubble configures the Hubble service on the Cilium agent.
|
// Hubble configures the Hubble service on the Cilium agent.
|
||||||
Hubble *HubbleSpec `json:"hubble,omitempty"`
|
Hubble *HubbleSpec `json:"hubble,omitempty"`
|
||||||
|
|
||||||
|
|
|
@ -579,6 +579,9 @@ type CiliumNetworkingSpec struct {
|
||||||
// EnableRemoteNodeIdentity enables the remote-node-identity.
|
// EnableRemoteNodeIdentity enables the remote-node-identity.
|
||||||
// Default: true
|
// Default: true
|
||||||
EnableRemoteNodeIdentity *bool `json:"enableRemoteNodeIdentity,omitempty"`
|
EnableRemoteNodeIdentity *bool `json:"enableRemoteNodeIdentity,omitempty"`
|
||||||
|
// EnableUnreachableRoutes enables unreachable routes on pod deletion.
|
||||||
|
// Default: false
|
||||||
|
EnableUnreachableRoutes *bool `json:"enableUnreachableRoutes,omitempty"`
|
||||||
// Hubble configures the Hubble service on the Cilium agent.
|
// Hubble configures the Hubble service on the Cilium agent.
|
||||||
Hubble *HubbleSpec `json:"hubble,omitempty"`
|
Hubble *HubbleSpec `json:"hubble,omitempty"`
|
||||||
|
|
||||||
|
|
|
@ -1997,6 +1997,7 @@ func autoConvert_v1alpha2_CiliumNetworkingSpec_To_kops_CiliumNetworkingSpec(in *
|
||||||
out.EnableNodePort = in.EnableNodePort
|
out.EnableNodePort = in.EnableNodePort
|
||||||
out.EtcdManaged = in.EtcdManaged
|
out.EtcdManaged = in.EtcdManaged
|
||||||
out.EnableRemoteNodeIdentity = in.EnableRemoteNodeIdentity
|
out.EnableRemoteNodeIdentity = in.EnableRemoteNodeIdentity
|
||||||
|
out.EnableUnreachableRoutes = in.EnableUnreachableRoutes
|
||||||
if in.Hubble != nil {
|
if in.Hubble != nil {
|
||||||
in, out := &in.Hubble, &out.Hubble
|
in, out := &in.Hubble, &out.Hubble
|
||||||
*out = new(kops.HubbleSpec)
|
*out = new(kops.HubbleSpec)
|
||||||
|
@ -2059,6 +2060,7 @@ func autoConvert_kops_CiliumNetworkingSpec_To_v1alpha2_CiliumNetworkingSpec(in *
|
||||||
out.EnableNodePort = in.EnableNodePort
|
out.EnableNodePort = in.EnableNodePort
|
||||||
out.EtcdManaged = in.EtcdManaged
|
out.EtcdManaged = in.EtcdManaged
|
||||||
out.EnableRemoteNodeIdentity = in.EnableRemoteNodeIdentity
|
out.EnableRemoteNodeIdentity = in.EnableRemoteNodeIdentity
|
||||||
|
out.EnableUnreachableRoutes = in.EnableUnreachableRoutes
|
||||||
if in.Hubble != nil {
|
if in.Hubble != nil {
|
||||||
in, out := &in.Hubble, &out.Hubble
|
in, out := &in.Hubble, &out.Hubble
|
||||||
*out = new(HubbleSpec)
|
*out = new(HubbleSpec)
|
||||||
|
|
|
@ -614,6 +614,11 @@ func (in *CiliumNetworkingSpec) DeepCopyInto(out *CiliumNetworkingSpec) {
|
||||||
*out = new(bool)
|
*out = new(bool)
|
||||||
**out = **in
|
**out = **in
|
||||||
}
|
}
|
||||||
|
if in.EnableUnreachableRoutes != nil {
|
||||||
|
in, out := &in.EnableUnreachableRoutes, &out.EnableUnreachableRoutes
|
||||||
|
*out = new(bool)
|
||||||
|
**out = **in
|
||||||
|
}
|
||||||
if in.Hubble != nil {
|
if in.Hubble != nil {
|
||||||
in, out := &in.Hubble, &out.Hubble
|
in, out := &in.Hubble, &out.Hubble
|
||||||
*out = new(HubbleSpec)
|
*out = new(HubbleSpec)
|
||||||
|
|
|
@ -436,6 +436,9 @@ type CiliumNetworkingSpec struct {
|
||||||
// EnableRemoteNodeIdentity enables the remote-node-identity.
|
// EnableRemoteNodeIdentity enables the remote-node-identity.
|
||||||
// Default: true
|
// Default: true
|
||||||
EnableRemoteNodeIdentity *bool `json:"enableRemoteNodeIdentity,omitempty"`
|
EnableRemoteNodeIdentity *bool `json:"enableRemoteNodeIdentity,omitempty"`
|
||||||
|
// EnableUnreachableRoutes enables unreachable routes on pod deletion.
|
||||||
|
// Default: false
|
||||||
|
EnableUnreachableRoutes *bool `json:"enableUnreachableRoutes,omitempty"`
|
||||||
// Hubble configures the Hubble service on the Cilium agent.
|
// Hubble configures the Hubble service on the Cilium agent.
|
||||||
Hubble *HubbleSpec `json:"hubble,omitempty"`
|
Hubble *HubbleSpec `json:"hubble,omitempty"`
|
||||||
|
|
||||||
|
|
|
@ -2120,6 +2120,7 @@ func autoConvert_v1alpha3_CiliumNetworkingSpec_To_kops_CiliumNetworkingSpec(in *
|
||||||
out.EnableNodePort = in.EnableNodePort
|
out.EnableNodePort = in.EnableNodePort
|
||||||
out.EtcdManaged = in.EtcdManaged
|
out.EtcdManaged = in.EtcdManaged
|
||||||
out.EnableRemoteNodeIdentity = in.EnableRemoteNodeIdentity
|
out.EnableRemoteNodeIdentity = in.EnableRemoteNodeIdentity
|
||||||
|
out.EnableUnreachableRoutes = in.EnableUnreachableRoutes
|
||||||
if in.Hubble != nil {
|
if in.Hubble != nil {
|
||||||
in, out := &in.Hubble, &out.Hubble
|
in, out := &in.Hubble, &out.Hubble
|
||||||
*out = new(kops.HubbleSpec)
|
*out = new(kops.HubbleSpec)
|
||||||
|
@ -2182,6 +2183,7 @@ func autoConvert_kops_CiliumNetworkingSpec_To_v1alpha3_CiliumNetworkingSpec(in *
|
||||||
out.EnableNodePort = in.EnableNodePort
|
out.EnableNodePort = in.EnableNodePort
|
||||||
out.EtcdManaged = in.EtcdManaged
|
out.EtcdManaged = in.EtcdManaged
|
||||||
out.EnableRemoteNodeIdentity = in.EnableRemoteNodeIdentity
|
out.EnableRemoteNodeIdentity = in.EnableRemoteNodeIdentity
|
||||||
|
out.EnableUnreachableRoutes = in.EnableUnreachableRoutes
|
||||||
if in.Hubble != nil {
|
if in.Hubble != nil {
|
||||||
in, out := &in.Hubble, &out.Hubble
|
in, out := &in.Hubble, &out.Hubble
|
||||||
*out = new(HubbleSpec)
|
*out = new(HubbleSpec)
|
||||||
|
|
|
@ -631,6 +631,11 @@ func (in *CiliumNetworkingSpec) DeepCopyInto(out *CiliumNetworkingSpec) {
|
||||||
*out = new(bool)
|
*out = new(bool)
|
||||||
**out = **in
|
**out = **in
|
||||||
}
|
}
|
||||||
|
if in.EnableUnreachableRoutes != nil {
|
||||||
|
in, out := &in.EnableUnreachableRoutes, &out.EnableUnreachableRoutes
|
||||||
|
*out = new(bool)
|
||||||
|
**out = **in
|
||||||
|
}
|
||||||
if in.Hubble != nil {
|
if in.Hubble != nil {
|
||||||
in, out := &in.Hubble, &out.Hubble
|
in, out := &in.Hubble, &out.Hubble
|
||||||
*out = new(HubbleSpec)
|
*out = new(HubbleSpec)
|
||||||
|
|
|
@ -712,6 +712,11 @@ func (in *CiliumNetworkingSpec) DeepCopyInto(out *CiliumNetworkingSpec) {
|
||||||
*out = new(bool)
|
*out = new(bool)
|
||||||
**out = **in
|
**out = **in
|
||||||
}
|
}
|
||||||
|
if in.EnableUnreachableRoutes != nil {
|
||||||
|
in, out := &in.EnableUnreachableRoutes, &out.EnableUnreachableRoutes
|
||||||
|
*out = new(bool)
|
||||||
|
**out = **in
|
||||||
|
}
|
||||||
if in.Hubble != nil {
|
if in.Hubble != nil {
|
||||||
in, out := &in.Hubble, &out.Hubble
|
in, out := &in.Hubble, &out.Hubble
|
||||||
*out = new(HubbleSpec)
|
*out = new(HubbleSpec)
|
||||||
|
|
|
@ -127,6 +127,10 @@ func (b *CiliumOptionsBuilder) BuildOptions(o interface{}) error {
|
||||||
c.EnableRemoteNodeIdentity = fi.PtrTo(true)
|
c.EnableRemoteNodeIdentity = fi.PtrTo(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if c.EnableUnreachableRoutes == nil {
|
||||||
|
c.EnableUnreachableRoutes = fi.PtrTo(false)
|
||||||
|
}
|
||||||
|
|
||||||
if c.EnableBPFMasquerade == nil {
|
if c.EnableBPFMasquerade == nil {
|
||||||
c.EnableBPFMasquerade = fi.PtrTo(c.IPAM == "eni")
|
c.EnableBPFMasquerade = fi.PtrTo(c.IPAM == "eni")
|
||||||
}
|
}
|
||||||
|
|
|
@ -225,6 +225,7 @@ spec:
|
||||||
enableEndpointHealthChecking: true
|
enableEndpointHealthChecking: true
|
||||||
enableL7Proxy: true
|
enableL7Proxy: true
|
||||||
enableRemoteNodeIdentity: true
|
enableRemoteNodeIdentity: true
|
||||||
|
enableUnreachableRoutes: false
|
||||||
hubble:
|
hubble:
|
||||||
enabled: false
|
enabled: false
|
||||||
identityAllocationMode: crd
|
identityAllocationMode: crd
|
||||||
|
|
|
@ -55,7 +55,7 @@ spec:
|
||||||
version: 9.99.0
|
version: 9.99.0
|
||||||
- id: k8s-1.16
|
- id: k8s-1.16
|
||||||
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
||||||
manifestHash: 61473dd1bb279c61903a8127af34fa01cfc748ea2be8eb8d3728a4606b1237e6
|
manifestHash: f067524e5a9b34b2ed9533fe81e308cc7d25723ffbbd54be681be00f9edf155c
|
||||||
name: networking.cilium.io
|
name: networking.cilium.io
|
||||||
needsRollingUpdate: all
|
needsRollingUpdate: all
|
||||||
selector:
|
selector:
|
||||||
|
|
|
@ -51,6 +51,7 @@ data:
|
||||||
enable-node-port: "false"
|
enable-node-port: "false"
|
||||||
enable-remote-node-identity: "true"
|
enable-remote-node-identity: "true"
|
||||||
enable-service-topology: "false"
|
enable-service-topology: "false"
|
||||||
|
enable-unreachable-routes: "false"
|
||||||
identity-allocation-mode: crd
|
identity-allocation-mode: crd
|
||||||
identity-change-grace-period: 5s
|
identity-change-grace-period: 5s
|
||||||
install-iptables-rules: "true"
|
install-iptables-rules: "true"
|
||||||
|
|
|
@ -216,6 +216,7 @@ spec:
|
||||||
enableEndpointHealthChecking: true
|
enableEndpointHealthChecking: true
|
||||||
enableL7Proxy: true
|
enableL7Proxy: true
|
||||||
enableRemoteNodeIdentity: true
|
enableRemoteNodeIdentity: true
|
||||||
|
enableUnreachableRoutes: false
|
||||||
hubble:
|
hubble:
|
||||||
enabled: false
|
enabled: false
|
||||||
identityAllocationMode: crd
|
identityAllocationMode: crd
|
||||||
|
|
|
@ -48,7 +48,7 @@ spec:
|
||||||
version: 9.99.0
|
version: 9.99.0
|
||||||
- id: k8s-1.16
|
- id: k8s-1.16
|
||||||
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
||||||
manifestHash: 030973549f54d32700b7e6dfad4436c6e0030693e8cbc31e5e47048651cc262b
|
manifestHash: e94026a9dabe207b365e65f483c6f584be7b0ac125767a4e8487472741297b18
|
||||||
name: networking.cilium.io
|
name: networking.cilium.io
|
||||||
needsRollingUpdate: all
|
needsRollingUpdate: all
|
||||||
selector:
|
selector:
|
||||||
|
|
|
@ -51,6 +51,7 @@ data:
|
||||||
enable-node-port: "false"
|
enable-node-port: "false"
|
||||||
enable-remote-node-identity: "true"
|
enable-remote-node-identity: "true"
|
||||||
enable-service-topology: "false"
|
enable-service-topology: "false"
|
||||||
|
enable-unreachable-routes: "false"
|
||||||
identity-allocation-mode: crd
|
identity-allocation-mode: crd
|
||||||
identity-change-grace-period: 5s
|
identity-change-grace-period: 5s
|
||||||
install-iptables-rules: "true"
|
install-iptables-rules: "true"
|
||||||
|
|
|
@ -218,6 +218,7 @@ spec:
|
||||||
enableEndpointHealthChecking: true
|
enableEndpointHealthChecking: true
|
||||||
enableL7Proxy: true
|
enableL7Proxy: true
|
||||||
enableRemoteNodeIdentity: true
|
enableRemoteNodeIdentity: true
|
||||||
|
enableUnreachableRoutes: false
|
||||||
hubble:
|
hubble:
|
||||||
enabled: false
|
enabled: false
|
||||||
identityAllocationMode: crd
|
identityAllocationMode: crd
|
||||||
|
|
|
@ -48,7 +48,7 @@ spec:
|
||||||
version: 9.99.0
|
version: 9.99.0
|
||||||
- id: k8s-1.16
|
- id: k8s-1.16
|
||||||
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
||||||
manifestHash: 769fa3eac2e71553adb9a5965a876f3918488fcc41353c49b8c0f3701ce52358
|
manifestHash: a74648938bd05093db333999da4d5acb9277c5d4111f5919a19d1e980f544e4b
|
||||||
name: networking.cilium.io
|
name: networking.cilium.io
|
||||||
needsRollingUpdate: all
|
needsRollingUpdate: all
|
||||||
selector:
|
selector:
|
||||||
|
|
|
@ -54,6 +54,7 @@ data:
|
||||||
enable-node-port: "false"
|
enable-node-port: "false"
|
||||||
enable-remote-node-identity: "true"
|
enable-remote-node-identity: "true"
|
||||||
enable-service-topology: "false"
|
enable-service-topology: "false"
|
||||||
|
enable-unreachable-routes: "false"
|
||||||
identity-allocation-mode: crd
|
identity-allocation-mode: crd
|
||||||
identity-change-grace-period: 5s
|
identity-change-grace-period: 5s
|
||||||
install-iptables-rules: "true"
|
install-iptables-rules: "true"
|
||||||
|
|
|
@ -222,6 +222,7 @@ spec:
|
||||||
enableEndpointHealthChecking: true
|
enableEndpointHealthChecking: true
|
||||||
enableL7Proxy: true
|
enableL7Proxy: true
|
||||||
enableRemoteNodeIdentity: true
|
enableRemoteNodeIdentity: true
|
||||||
|
enableUnreachableRoutes: false
|
||||||
hubble:
|
hubble:
|
||||||
enabled: false
|
enabled: false
|
||||||
identityAllocationMode: crd
|
identityAllocationMode: crd
|
||||||
|
|
|
@ -48,7 +48,7 @@ spec:
|
||||||
version: 9.99.0
|
version: 9.99.0
|
||||||
- id: k8s-1.16
|
- id: k8s-1.16
|
||||||
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
||||||
manifestHash: 197952743ca3f39f89b954c04b40349b3bf1192dccb0bae40c4008be5f9fd787
|
manifestHash: 2a1ee49e7de7f6109240c11f32555b269d41ac87416a0203f2cbac9fda60283a
|
||||||
name: networking.cilium.io
|
name: networking.cilium.io
|
||||||
needsRollingUpdate: all
|
needsRollingUpdate: all
|
||||||
selector:
|
selector:
|
||||||
|
|
|
@ -51,6 +51,7 @@ data:
|
||||||
enable-node-port: "false"
|
enable-node-port: "false"
|
||||||
enable-remote-node-identity: "true"
|
enable-remote-node-identity: "true"
|
||||||
enable-service-topology: "false"
|
enable-service-topology: "false"
|
||||||
|
enable-unreachable-routes: "false"
|
||||||
identity-allocation-mode: crd
|
identity-allocation-mode: crd
|
||||||
identity-change-grace-period: 5s
|
identity-change-grace-period: 5s
|
||||||
install-iptables-rules: "true"
|
install-iptables-rules: "true"
|
||||||
|
|
|
@ -221,6 +221,7 @@ spec:
|
||||||
enableEndpointHealthChecking: true
|
enableEndpointHealthChecking: true
|
||||||
enableL7Proxy: true
|
enableL7Proxy: true
|
||||||
enableRemoteNodeIdentity: true
|
enableRemoteNodeIdentity: true
|
||||||
|
enableUnreachableRoutes: false
|
||||||
hubble:
|
hubble:
|
||||||
enabled: true
|
enabled: true
|
||||||
identityAllocationMode: crd
|
identityAllocationMode: crd
|
||||||
|
|
|
@ -111,7 +111,7 @@ spec:
|
||||||
version: 9.99.0
|
version: 9.99.0
|
||||||
- id: k8s-1.16
|
- id: k8s-1.16
|
||||||
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
||||||
manifestHash: d0fef712bba535f969cf39fbdc2a81be2d85d08c1ca7a716fa9a110620400b39
|
manifestHash: ba167eb44300511acb7079eaa68f90d368ef4c469b9e16b1dc96b687ff6ea5ed
|
||||||
name: networking.cilium.io
|
name: networking.cilium.io
|
||||||
needsPKI: true
|
needsPKI: true
|
||||||
needsRollingUpdate: all
|
needsRollingUpdate: all
|
||||||
|
|
|
@ -65,6 +65,7 @@ data:
|
||||||
enable-node-port: "false"
|
enable-node-port: "false"
|
||||||
enable-remote-node-identity: "true"
|
enable-remote-node-identity: "true"
|
||||||
enable-service-topology: "false"
|
enable-service-topology: "false"
|
||||||
|
enable-unreachable-routes: "false"
|
||||||
hubble-disable-tls: "false"
|
hubble-disable-tls: "false"
|
||||||
hubble-listen-address: :4244
|
hubble-listen-address: :4244
|
||||||
hubble-socket-path: /var/run/cilium/hubble.sock
|
hubble-socket-path: /var/run/cilium/hubble.sock
|
||||||
|
|
|
@ -232,6 +232,7 @@ spec:
|
||||||
enableL7Proxy: true
|
enableL7Proxy: true
|
||||||
enableNodePort: true
|
enableNodePort: true
|
||||||
enableRemoteNodeIdentity: true
|
enableRemoteNodeIdentity: true
|
||||||
|
enableUnreachableRoutes: false
|
||||||
etcdManaged: true
|
etcdManaged: true
|
||||||
hubble:
|
hubble:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
|
@ -48,7 +48,7 @@ spec:
|
||||||
version: 9.99.0
|
version: 9.99.0
|
||||||
- id: k8s-1.16
|
- id: k8s-1.16
|
||||||
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
||||||
manifestHash: ead84fffa6d9e5335e6b981c9c916af2eb902b1c2af8cfb919b5eaa48979950a
|
manifestHash: c562a1618bc207bcf3727a40e87ae098596e7281afc035425172d23814d2100c
|
||||||
name: networking.cilium.io
|
name: networking.cilium.io
|
||||||
needsRollingUpdate: all
|
needsRollingUpdate: all
|
||||||
selector:
|
selector:
|
||||||
|
|
|
@ -55,6 +55,7 @@ data:
|
||||||
enable-node-port: "true"
|
enable-node-port: "true"
|
||||||
enable-remote-node-identity: "true"
|
enable-remote-node-identity: "true"
|
||||||
enable-service-topology: "false"
|
enable-service-topology: "false"
|
||||||
|
enable-unreachable-routes: "false"
|
||||||
etcd-config: |-
|
etcd-config: |-
|
||||||
---
|
---
|
||||||
endpoints:
|
endpoints:
|
||||||
|
|
|
@ -259,6 +259,9 @@ data:
|
||||||
# Enable use of remote node identity (default false)
|
# Enable use of remote node identity (default false)
|
||||||
enable-remote-node-identity: "{{ .EnableRemoteNodeIdentity }}"
|
enable-remote-node-identity: "{{ .EnableRemoteNodeIdentity }}"
|
||||||
|
|
||||||
|
# Enable unreachable routes on pod deletion (default false)
|
||||||
|
enable-unreachable-routes: "{{ .EnableUnreachableRoutes }}"
|
||||||
|
|
||||||
# enable-l7-proxy enables L7 proxy for L7 policy enforcement. (default true)
|
# enable-l7-proxy enables L7 proxy for L7 policy enforcement. (default true)
|
||||||
enable-l7-proxy: "{{ .EnableL7Proxy }}"
|
enable-l7-proxy: "{{ .EnableL7Proxy }}"
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,7 @@ spec:
|
||||||
version: 9.99.0
|
version: 9.99.0
|
||||||
- id: k8s-1.16
|
- id: k8s-1.16
|
||||||
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
||||||
manifestHash: 586c92a965bab52296ba54e59e91c45731dc0d7449f98858ca33e74b6c010ba6
|
manifestHash: d0d0425155f3251dda3a1f9fdfd7e9bae02f50380d0a503f47968887ae0a3767
|
||||||
name: networking.cilium.io
|
name: networking.cilium.io
|
||||||
needsRollingUpdate: all
|
needsRollingUpdate: all
|
||||||
selector:
|
selector:
|
||||||
|
|
|
@ -55,7 +55,7 @@ spec:
|
||||||
version: 9.99.0
|
version: 9.99.0
|
||||||
- id: k8s-1.16
|
- id: k8s-1.16
|
||||||
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
||||||
manifestHash: 586c92a965bab52296ba54e59e91c45731dc0d7449f98858ca33e74b6c010ba6
|
manifestHash: d0d0425155f3251dda3a1f9fdfd7e9bae02f50380d0a503f47968887ae0a3767
|
||||||
name: networking.cilium.io
|
name: networking.cilium.io
|
||||||
needsRollingUpdate: all
|
needsRollingUpdate: all
|
||||||
selector:
|
selector:
|
||||||
|
|
|
@ -112,7 +112,7 @@ spec:
|
||||||
version: 9.99.0
|
version: 9.99.0
|
||||||
- id: k8s-1.16
|
- id: k8s-1.16
|
||||||
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
manifest: networking.cilium.io/k8s-1.16-v1.12.yaml
|
||||||
manifestHash: 586c92a965bab52296ba54e59e91c45731dc0d7449f98858ca33e74b6c010ba6
|
manifestHash: d0d0425155f3251dda3a1f9fdfd7e9bae02f50380d0a503f47968887ae0a3767
|
||||||
name: networking.cilium.io
|
name: networking.cilium.io
|
||||||
needsRollingUpdate: all
|
needsRollingUpdate: all
|
||||||
selector:
|
selector:
|
||||||
|
|
Loading…
Reference in New Issue