Skip to content

Commit cd803fe

Browse files
committed
update tigera/operator
Signed-off-by: Sebastian Hoß <[email protected]>
1 parent 4745b0b commit cd803fe

36 files changed

+9499
-26
lines changed

code-generator/src/catalog.rs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3279,9 +3279,7 @@ pub const CRD_V1_SOURCES: &'static [UpstreamSource] = &[
32793279
UpstreamSource {
32803280
project_name: "snyk/kubernetes-monitor",
32813281
license: APACHE_V2,
3282-
urls: &[
3283-
"https://github.com/snyk/kubernetes-monitor/blob/staging/snyk-operator/deploy/olm-catalog/snyk-operator/0.0.0/snykmonitors.charts.helm.k8s.io.crd.yaml",
3284-
],
3282+
urls: &[], // snyk-operator got removed upstream :(
32853283
ignores: &[],
32863284
},
32873285
UpstreamSource {
@@ -3577,6 +3575,8 @@ pub const CRD_V1_SOURCES: &'static [UpstreamSource] = &[
35773575
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_authentications.yaml",
35783576
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_compliances.yaml",
35793577
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_egressgateways.yaml",
3578+
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_gatewayapis.yaml",
3579+
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_goldmanes.yaml",
35803580
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_imagesets.yaml",
35813581
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_installations.yaml",
35823582
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_intrusiondetections.yaml",
@@ -3586,12 +3586,14 @@ pub const CRD_V1_SOURCES: &'static [UpstreamSource] = &[
35863586
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_managementclusters.yaml",
35873587
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_managers.yaml",
35883588
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_monitors.yaml",
3589-
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_packetcaptures.yaml",
3589+
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_nonclusterhosts.yaml",
3590+
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_packetcaptureapis.yaml",
35903591
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_policyrecommendations.yaml",
35913592
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_tenants.yaml",
35923593
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_tigerastatuses.yaml",
35933594
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_tlspassthroughroutes.yaml",
35943595
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_tlsterminatedroutes.yaml",
3596+
"https://github.com/tigera/operator/blob/master/pkg/crds/operator/operator.tigera.io_whiskers.yaml",
35953597
],
35963598
ignores: &[],
35973599
},

crd-catalog/tigera/operator/operator.tigera.io/v1/gatewayapis.yaml

Lines changed: 2149 additions & 0 deletions
Large diffs are not rendered by default.

crd-catalog/tigera/operator/operator.tigera.io/v1/goldmanes.yaml

Lines changed: 865 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
apiVersion: "apiextensions.k8s.io/v1"
2+
kind: "CustomResourceDefinition"
3+
metadata:
4+
annotations:
5+
controller-gen.kubebuilder.io/version: "v0.16.5"
6+
name: "nonclusterhosts.operator.tigera.io"
7+
spec:
8+
group: "operator.tigera.io"
9+
names:
10+
kind: "NonClusterHost"
11+
listKind: "NonClusterHostList"
12+
plural: "nonclusterhosts"
13+
singular: "nonclusterhost"
14+
scope: "Cluster"
15+
versions:
16+
- name: "v1"
17+
schema:
18+
openAPIV3Schema:
19+
description: "NonClusterHost installs the components required for non-cluster host log collection.\nAt most one instance of this resource is supported. It must be named \"tigera-secure\"."
20+
properties:
21+
apiVersion:
22+
description: "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources"
23+
type: "string"
24+
kind:
25+
description: "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
26+
type: "string"
27+
metadata:
28+
type: "object"
29+
spec:
30+
description: "Specification of the desired state for non-cluster host log collection."
31+
properties:
32+
endpoint:
33+
description: "Location of the log ingestion point for non-cluster hosts. For example: https://1.2.3.4:443"
34+
pattern: "^https://.+$"
35+
type: "string"
36+
typhaEndpoint:
37+
description: "Location of the Typha endpoint for non-cluster host Felix and Typha communication. For example: 5.6.7.8:5473"
38+
type: "string"
39+
required:
40+
- "endpoint"
41+
type: "object"
42+
type: "object"
43+
served: true
44+
storage: true

0 commit comments

Comments
 (0)