mirror of https://github.com/kubernetes/kops.git
make apimachinery && make crds
This commit is contained in:
parent
99ff00df61
commit
881bd4e55f
|
|
@ -5060,6 +5060,12 @@ spec:
|
||||||
nodeInitBootstrapFile:
|
nodeInitBootstrapFile:
|
||||||
description: NodeInitBootstrapFile is unused.
|
description: NodeInitBootstrapFile is unused.
|
||||||
type: string
|
type: string
|
||||||
|
operatorPodAnnotations:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
description: 'OperatorPodAnnotations makes possible to add
|
||||||
|
additional annotations to cilium operator. Default: none'
|
||||||
|
type: object
|
||||||
pprof:
|
pprof:
|
||||||
description: Pprof is unused.
|
description: Pprof is unused.
|
||||||
type: boolean
|
type: boolean
|
||||||
|
|
|
||||||
|
|
@ -1963,6 +1963,7 @@ func autoConvert_v1alpha2_CiliumNetworkingSpec_To_kops_CiliumNetworkingSpec(in *
|
||||||
out.Masquerade = in.Masquerade
|
out.Masquerade = in.Masquerade
|
||||||
// INFO: in.Nat46Range opted out of conversion generation
|
// INFO: in.Nat46Range opted out of conversion generation
|
||||||
out.AgentPodAnnotations = in.AgentPodAnnotations
|
out.AgentPodAnnotations = in.AgentPodAnnotations
|
||||||
|
out.OperatorPodAnnotations = in.OperatorPodAnnotations
|
||||||
// INFO: in.Pprof opted out of conversion generation
|
// INFO: in.Pprof opted out of conversion generation
|
||||||
// INFO: in.PrefilterDevice opted out of conversion generation
|
// INFO: in.PrefilterDevice opted out of conversion generation
|
||||||
// INFO: in.PrometheusServeAddr opted out of conversion generation
|
// INFO: in.PrometheusServeAddr opted out of conversion generation
|
||||||
|
|
@ -2037,6 +2038,7 @@ func autoConvert_kops_CiliumNetworkingSpec_To_v1alpha2_CiliumNetworkingSpec(in *
|
||||||
out.IdentityChangeGracePeriod = in.IdentityChangeGracePeriod
|
out.IdentityChangeGracePeriod = in.IdentityChangeGracePeriod
|
||||||
out.Masquerade = in.Masquerade
|
out.Masquerade = in.Masquerade
|
||||||
out.AgentPodAnnotations = in.AgentPodAnnotations
|
out.AgentPodAnnotations = in.AgentPodAnnotations
|
||||||
|
out.OperatorPodAnnotations = in.OperatorPodAnnotations
|
||||||
out.Tunnel = in.Tunnel
|
out.Tunnel = in.Tunnel
|
||||||
out.MonitorAggregation = in.MonitorAggregation
|
out.MonitorAggregation = in.MonitorAggregation
|
||||||
out.BPFCTGlobalTCPMax = in.BPFCTGlobalTCPMax
|
out.BPFCTGlobalTCPMax = in.BPFCTGlobalTCPMax
|
||||||
|
|
|
||||||
|
|
@ -604,6 +604,13 @@ func (in *CiliumNetworkingSpec) DeepCopyInto(out *CiliumNetworkingSpec) {
|
||||||
(*out)[key] = val
|
(*out)[key] = val
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if in.OperatorPodAnnotations != nil {
|
||||||
|
in, out := &in.OperatorPodAnnotations, &out.OperatorPodAnnotations
|
||||||
|
*out = make(map[string]string, len(*in))
|
||||||
|
for key, val := range *in {
|
||||||
|
(*out)[key] = val
|
||||||
|
}
|
||||||
|
}
|
||||||
if in.InstallIptablesRules != nil {
|
if in.InstallIptablesRules != nil {
|
||||||
in, out := &in.InstallIptablesRules, &out.InstallIptablesRules
|
in, out := &in.InstallIptablesRules, &out.InstallIptablesRules
|
||||||
*out = new(bool)
|
*out = new(bool)
|
||||||
|
|
|
||||||
|
|
@ -2099,6 +2099,7 @@ func autoConvert_v1alpha3_CiliumNetworkingSpec_To_kops_CiliumNetworkingSpec(in *
|
||||||
out.IdentityChangeGracePeriod = in.IdentityChangeGracePeriod
|
out.IdentityChangeGracePeriod = in.IdentityChangeGracePeriod
|
||||||
out.Masquerade = in.Masquerade
|
out.Masquerade = in.Masquerade
|
||||||
out.AgentPodAnnotations = in.AgentPodAnnotations
|
out.AgentPodAnnotations = in.AgentPodAnnotations
|
||||||
|
out.OperatorPodAnnotations = in.OperatorPodAnnotations
|
||||||
out.Tunnel = in.Tunnel
|
out.Tunnel = in.Tunnel
|
||||||
out.MonitorAggregation = in.MonitorAggregation
|
out.MonitorAggregation = in.MonitorAggregation
|
||||||
out.BPFCTGlobalTCPMax = in.BPFCTGlobalTCPMax
|
out.BPFCTGlobalTCPMax = in.BPFCTGlobalTCPMax
|
||||||
|
|
@ -2162,6 +2163,7 @@ func autoConvert_kops_CiliumNetworkingSpec_To_v1alpha3_CiliumNetworkingSpec(in *
|
||||||
out.IdentityChangeGracePeriod = in.IdentityChangeGracePeriod
|
out.IdentityChangeGracePeriod = in.IdentityChangeGracePeriod
|
||||||
out.Masquerade = in.Masquerade
|
out.Masquerade = in.Masquerade
|
||||||
out.AgentPodAnnotations = in.AgentPodAnnotations
|
out.AgentPodAnnotations = in.AgentPodAnnotations
|
||||||
|
out.OperatorPodAnnotations = in.OperatorPodAnnotations
|
||||||
out.Tunnel = in.Tunnel
|
out.Tunnel = in.Tunnel
|
||||||
out.MonitorAggregation = in.MonitorAggregation
|
out.MonitorAggregation = in.MonitorAggregation
|
||||||
out.BPFCTGlobalTCPMax = in.BPFCTGlobalTCPMax
|
out.BPFCTGlobalTCPMax = in.BPFCTGlobalTCPMax
|
||||||
|
|
|
||||||
|
|
@ -626,6 +626,13 @@ func (in *CiliumNetworkingSpec) DeepCopyInto(out *CiliumNetworkingSpec) {
|
||||||
(*out)[key] = val
|
(*out)[key] = val
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if in.OperatorPodAnnotations != nil {
|
||||||
|
in, out := &in.OperatorPodAnnotations, &out.OperatorPodAnnotations
|
||||||
|
*out = make(map[string]string, len(*in))
|
||||||
|
for key, val := range *in {
|
||||||
|
(*out)[key] = val
|
||||||
|
}
|
||||||
|
}
|
||||||
if in.InstallIptablesRules != nil {
|
if in.InstallIptablesRules != nil {
|
||||||
in, out := &in.InstallIptablesRules, &out.InstallIptablesRules
|
in, out := &in.InstallIptablesRules, &out.InstallIptablesRules
|
||||||
*out = new(bool)
|
*out = new(bool)
|
||||||
|
|
|
||||||
|
|
@ -707,6 +707,13 @@ func (in *CiliumNetworkingSpec) DeepCopyInto(out *CiliumNetworkingSpec) {
|
||||||
(*out)[key] = val
|
(*out)[key] = val
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if in.OperatorPodAnnotations != nil {
|
||||||
|
in, out := &in.OperatorPodAnnotations, &out.OperatorPodAnnotations
|
||||||
|
*out = make(map[string]string, len(*in))
|
||||||
|
for key, val := range *in {
|
||||||
|
(*out)[key] = val
|
||||||
|
}
|
||||||
|
}
|
||||||
if in.InstallIptablesRules != nil {
|
if in.InstallIptablesRules != nil {
|
||||||
in, out := &in.InstallIptablesRules, &out.InstallIptablesRules
|
in, out := &in.InstallIptablesRules, &out.InstallIptablesRules
|
||||||
*out = new(bool)
|
*out = new(bool)
|
||||||
|
|
|
||||||
|
|
@ -230,6 +230,10 @@ spec:
|
||||||
ipam: kubernetes
|
ipam: kubernetes
|
||||||
memoryRequest: 128Mi
|
memoryRequest: 128Mi
|
||||||
monitorAggregation: medium
|
monitorAggregation: medium
|
||||||
|
operatorPodAnnotations:
|
||||||
|
test1: "true"
|
||||||
|
test2: "123"
|
||||||
|
test3: cilium-operator
|
||||||
sidecarIstioProxyImage: cilium/istio_proxy
|
sidecarIstioProxyImage: cilium/istio_proxy
|
||||||
toFqdnsDnsRejectResponseCode: refused
|
toFqdnsDnsRejectResponseCode: refused
|
||||||
tunnel: vxlan
|
tunnel: vxlan
|
||||||
|
|
|
||||||
|
|
@ -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: 2a1ee49e7de7f6109240c11f32555b269d41ac87416a0203f2cbac9fda60283a
|
manifestHash: d1db96e7bf2e42c0e9514182f66fc48ca5eca29063c103f5e1b73c770f750c3a
|
||||||
name: networking.cilium.io
|
name: networking.cilium.io
|
||||||
needsRollingUpdate: all
|
needsRollingUpdate: all
|
||||||
selector:
|
selector:
|
||||||
|
|
|
||||||
|
|
@ -648,6 +648,10 @@ spec:
|
||||||
type: RollingUpdate
|
type: RollingUpdate
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
|
annotations:
|
||||||
|
test1: "true"
|
||||||
|
test2: "123"
|
||||||
|
test3: cilium-operator
|
||||||
creationTimestamp: null
|
creationTimestamp: null
|
||||||
labels:
|
labels:
|
||||||
io.cilium/app: operator
|
io.cilium/app: operator
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue