Skip to content
This repository was archived by the owner on Jul 30, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
---
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
annotations:
"helm.sh/hook": crd-install
creationTimestamp: null
labels:
controller-tools.k8s.io: "1.0"
name: clusterpropagatedversions.core.kubefed.k8s.io
name: clusterpropagatedversions.core.kubefed.io
spec:
group: core.kubefed.k8s.io
group: core.kubefed.io
names:
kind: ClusterPropagatedVersion
plural: clusterpropagatedversions
Expand All @@ -31,8 +28,6 @@ spec:
type: string
metadata:
type: object
spec:
type: object
status:
properties:
clusterVersions:
Expand All @@ -43,9 +38,12 @@ spec:
description: The name of the cluster the version is for.
type: string
version:
description: The last version produced for the resource by a federation
description: The last version produced for the resource by a KubeFed
operation.
type: string
required:
- clusterName
- version
type: object
type: array
overridesVersion:
Expand All @@ -54,6 +52,9 @@ spec:
templateVersion:
description: The observed version of the template for this resource.
type: string
required:
- templateVersion
- overridesVersion
type: object
version: v1alpha1
status:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
---
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
annotations:
"helm.sh/hook": crd-install
creationTimestamp: null
labels:
controller-tools.k8s.io: "1.0"
name: federatedservicestatuses.core.kubefed.k8s.io
name: federatedservicestatuses.core.kubefed.io
spec:
group: core.kubefed.k8s.io
group: core.kubefed.io
names:
kind: FederatedServiceStatus
plural: federatedservicestatuses
Expand All @@ -29,6 +26,9 @@ spec:
type: string
status:
type: object
required:
- clusterName
- status
type: object
type: array
kind:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
---
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
annotations:
"helm.sh/hook": crd-install
creationTimestamp: null
labels:
controller-tools.k8s.io: "1.0"
name: propagatedversions.core.kubefed.k8s.io
name: propagatedversions.core.kubefed.io
spec:
group: core.kubefed.k8s.io
group: core.kubefed.io
names:
kind: PropagatedVersion
plural: propagatedversions
Expand All @@ -31,8 +28,6 @@ spec:
type: string
metadata:
type: object
spec:
type: object
status:
properties:
clusterVersions:
Expand All @@ -43,9 +38,12 @@ spec:
description: The name of the cluster the version is for.
type: string
version:
description: The last version produced for the resource by a federation
description: The last version produced for the resource by a KubeFed
operation.
type: string
required:
- clusterName
- version
type: object
type: array
overridesVersion:
Expand All @@ -54,6 +52,9 @@ spec:
templateVersion:
description: The observed version of the template for this resource.
type: string
required:
- templateVersion
- overridesVersion
type: object
version: v1alpha1
status:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
---
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
annotations:
"helm.sh/hook": crd-install
creationTimestamp: null
labels:
controller-tools.k8s.io: "1.0"
name: federatedtypeconfigs.core.kubefed.k8s.io
name: federatedtypeconfigs.core.kubefed.io
spec:
group: core.kubefed.k8s.io
group: core.kubefed.io
names:
kind: FederatedTypeConfig
plural: federatedtypeconfigs
shortNames:
- ftc
scope: Namespaced
subresources:
status: {}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
---
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
annotations:
"helm.sh/hook": crd-install
creationTimestamp: null
labels:
controller-tools.k8s.io: "1.0"
name: kubefedclusters.core.kubefed.k8s.io
name: kubefedclusters.core.kubefed.io
spec:
additionalPrinterColumns:
- JSONPath: .status.conditions[?(@.type=='Ready')].status
Expand All @@ -16,7 +13,7 @@ spec:
- JSONPath: .metadata.creationTimestamp
name: age
type: date
group: core.kubefed.k8s.io
group: core.kubefed.io
names:
kind: KubeFedCluster
plural: kubefedclusters
Expand Down Expand Up @@ -48,6 +45,14 @@ spec:
description: CABundle contains the certificate authority information.
format: byte
type: string
disabledTLSValidations:
description: DisabledTLSValidations defines a list of checks to ignore
when validating the TLS connection to the member cluster. This can
be any of *, SubjectName, or ValidityPeriod. If * is specified, it
is expected to be the only option in list.
items:
type: string
type: array
secretRef:
description: Name of the secret containing the token required to access
the member cluster. The secret needs to exist in the same namespace
Expand Down Expand Up @@ -110,6 +115,8 @@ spec:
required:
- conditions
type: object
required:
- spec
version: v1beta1
status:
acceptedNames:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
---
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
annotations:
"helm.sh/hook": crd-install
creationTimestamp: null
labels:
controller-tools.k8s.io: "1.0"
name: kubefedconfigs.core.kubefed.k8s.io
name: kubefedconfigs.core.kubefed.io
spec:
group: core.kubefed.k8s.io
group: core.kubefed.io
names:
kind: KubeFedConfig
plural: kubefedconfigs
Expand Down
Loading