-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump upbound/crossplane to v1.16.4-up.1
Signed-off-by: Hasan Turken <[email protected]>
- Loading branch information
Showing
5 changed files
with
202 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.14.0 | ||
name: imageconfigs.pkg.crossplane.io | ||
spec: | ||
group: pkg.crossplane.io | ||
names: | ||
categories: | ||
- crossplane | ||
kind: ImageConfig | ||
listKind: ImageConfigList | ||
plural: imageconfigs | ||
singular: imageconfig | ||
scope: Cluster | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .metadata.creationTimestamp | ||
name: AGE | ||
type: date | ||
name: v1beta1 | ||
schema: | ||
openAPIV3Schema: | ||
description: The ImageConfig resource is used to configure settings for package | ||
images. | ||
properties: | ||
apiVersion: | ||
description: |- | ||
APIVersion defines the versioned schema of this representation of an object. | ||
Servers should convert recognized schemas to the latest internal value, and | ||
may reject unrecognized values. | ||
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources | ||
type: string | ||
kind: | ||
description: |- | ||
Kind is a string value representing the REST resource this object represents. | ||
Servers may infer this from the endpoint the client submits requests to. | ||
Cannot be updated. | ||
In CamelCase. | ||
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: ImageConfigSpec contains the configuration for matching images. | ||
properties: | ||
matchImages: | ||
description: MatchImages is a list of image matching rules that should | ||
be satisfied. | ||
items: | ||
description: ImageMatch defines a rule for matching image. | ||
properties: | ||
prefix: | ||
description: Prefix is the prefix that should be matched. | ||
type: string | ||
type: | ||
default: Prefix | ||
description: Type is the type of match. | ||
enum: | ||
- Prefix | ||
type: string | ||
required: | ||
- prefix | ||
type: object | ||
type: array | ||
x-kubernetes-validations: | ||
- message: matchImages should have at least one element. | ||
rule: size(self) > 0 | ||
registry: | ||
description: Registry is the configuration for the registry. | ||
properties: | ||
authentication: | ||
description: Authentication is the authentication information | ||
for the registry. | ||
properties: | ||
pullSecretRef: | ||
description: |- | ||
PullSecretRef is a reference to a secret that contains the credentials for | ||
the registry. | ||
properties: | ||
name: | ||
description: |- | ||
Name of the referent. | ||
More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names | ||
TODO: Add other useful fields. apiVersion, kind, uid? | ||
type: string | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
required: | ||
- pullSecretRef | ||
type: object | ||
type: object | ||
required: | ||
- matchImages | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: {} |
98 changes: 98 additions & 0 deletions
98
cluster/olm/bundle/manifests/imageconfigs.pkg.crossplane.io.customresourcedefinition.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
# Generated by https://github.com/upbound/olm-bundle | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.14.0 | ||
name: imageconfigs.pkg.crossplane.io | ||
spec: | ||
group: pkg.crossplane.io | ||
names: | ||
categories: | ||
- crossplane | ||
kind: ImageConfig | ||
listKind: ImageConfigList | ||
plural: imageconfigs | ||
singular: imageconfig | ||
scope: Cluster | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .metadata.creationTimestamp | ||
name: AGE | ||
type: date | ||
name: v1beta1 | ||
schema: | ||
openAPIV3Schema: | ||
description: The ImageConfig resource is used to configure settings for package images. | ||
properties: | ||
apiVersion: | ||
description: |- | ||
APIVersion defines the versioned schema of this representation of an object. | ||
Servers should convert recognized schemas to the latest internal value, and | ||
may reject unrecognized values. | ||
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources | ||
type: string | ||
kind: | ||
description: |- | ||
Kind is a string value representing the REST resource this object represents. | ||
Servers may infer this from the endpoint the client submits requests to. | ||
Cannot be updated. | ||
In CamelCase. | ||
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: ImageConfigSpec contains the configuration for matching images. | ||
properties: | ||
matchImages: | ||
description: MatchImages is a list of image matching rules that should be satisfied. | ||
items: | ||
description: ImageMatch defines a rule for matching image. | ||
properties: | ||
prefix: | ||
description: Prefix is the prefix that should be matched. | ||
type: string | ||
type: | ||
default: Prefix | ||
description: Type is the type of match. | ||
enum: | ||
- Prefix | ||
type: string | ||
required: | ||
- prefix | ||
type: object | ||
type: array | ||
x-kubernetes-validations: | ||
- message: matchImages should have at least one element. | ||
rule: size(self) > 0 | ||
registry: | ||
description: Registry is the configuration for the registry. | ||
properties: | ||
authentication: | ||
description: Authentication is the authentication information for the registry. | ||
properties: | ||
pullSecretRef: | ||
description: |- | ||
PullSecretRef is a reference to a secret that contains the credentials for | ||
the registry. | ||
properties: | ||
name: | ||
description: |- | ||
Name of the referent. | ||
More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names | ||
TODO: Add other useful fields. apiVersion, kind, uid? | ||
type: string | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
required: | ||
- pullSecretRef | ||
type: object | ||
type: object | ||
required: | ||
- matchImages | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: {} |