Skip to content

Commit

Permalink
Merge pull request #18 from mschneider82/patch-1
Browse files Browse the repository at this point in the history
update sample deployment to apiextensions.k8s.io/v1
  • Loading branch information
maraino committed Oct 28, 2021
2 parents 370cc68 + 9817906 commit fb88b22
Showing 1 changed file with 110 additions and 111 deletions.
221 changes: 110 additions & 111 deletions config/samples/deployment.yaml
Expand Up @@ -5,7 +5,7 @@ metadata:
control-plane: controller-manager
name: step-issuer-system
---
apiVersion: apiextensions.k8s.io/v1beta1
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
Expand All @@ -20,121 +20,120 @@ spec:
plural: stepissuers
singular: stepissuer
scope: Namespaced
subresources:
status: {}
validation:
openAPIV3Schema:
description: StepIssuer is the Schema for the stepissuers API
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: StepIssuerSpec defines the desired state of StepIssuer
properties:
caBundle:
description: CABundle is a base64 encoded TLS certificate used to verify
connections to the step certificates server. If not set the system
root certificates are used to validate the TLS connection.
format: byte
type: string
provisioner:
description: Provisioner contains the step certificates provisioner
configuration.
properties:
kid:
description: KeyID is the kid property of the JWK provisioner.
type: string
name:
description: Names is the name of the JWK provisioner.
type: string
passwordRef:
description: PasswordRef is a reference to a Secret containing the
provisioner password used to decrypt the provisioner private key.
properties:
key:
description: The key of the secret to select from. Must be a
valid secret key.
type: string
name:
description: The name of the secret in the pod's namespace to
select from.
type: string
required:
- name
type: object
required:
- kid
- name
- passwordRef
type: object
url:
description: URL is the base URL for the step certificates instance.
type: string
required:
- provisioner
- url
type: object
status:
description: StepIssuerStatus defines the observed state of StepIssuer
properties:
conditions:
items:
description: StepIssuerCondition contains condition information for
the step issuer.
versions:
- name: v1beta1
served: true
storage: true
subresources:
status: {}
schema:
openAPIV3Schema:
description: StepIssuer is the Schema for the stepissuers API
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: StepIssuerSpec defines the desired state of StepIssuer
properties:
caBundle:
description: CABundle is a base64 encoded TLS certificate used to verify
connections to the step certificates server. If not set the system
root certificates are used to validate the TLS connection.
format: byte
type: string
provisioner:
description: Provisioner contains the step certificates provisioner
configuration.
properties:
lastTransitionTime:
description: LastTransitionTime is the timestamp corresponding
to the last status change of this condition.
format: date-time
type: string
message:
description: Message is a human readable description of the details
of the last transition, complementing reason.
type: string
reason:
description: Reason is a brief machine readable explanation for
the condition's last transition.
type: string
status:
allOf:
- enum:
- "True"
- "False"
- Unknown
- enum:
- "True"
- "False"
- Unknown
description: Status of the condition, one of ('True', 'False',
'Unknown').
kid:
description: KeyID is the kid property of the JWK provisioner.
type: string
type:
description: Type of the condition, currently ('Ready').
enum:
- Ready
name:
description: Names is the name of the JWK provisioner.
type: string
passwordRef:
description: PasswordRef is a reference to a Secret containing the
provisioner password used to decrypt the provisioner private key.
properties:
key:
description: The key of the secret to select from. Must be a
valid secret key.
type: string
name:
description: The name of the secret in the pod's namespace to
select from.
type: string
required:
- name
type: object
required:
- status
- type
- kid
- name
- passwordRef
type: object
type: array
type: object
type: object
version: v1beta1
versions:
- name: v1beta1
served: true
storage: true
url:
description: URL is the base URL for the step certificates instance.
type: string
required:
- provisioner
- url
type: object
status:
description: StepIssuerStatus defines the observed state of StepIssuer
properties:
conditions:
items:
description: StepIssuerCondition contains condition information for
the step issuer.
properties:
lastTransitionTime:
description: LastTransitionTime is the timestamp corresponding
to the last status change of this condition.
format: date-time
type: string
message:
description: Message is a human readable description of the details
of the last transition, complementing reason.
type: string
reason:
description: Reason is a brief machine readable explanation for
the condition's last transition.
type: string
status:
allOf:
- enum:
- "True"
- "False"
- Unknown
- enum:
- "True"
- "False"
- Unknown
description: Status of the condition, one of ('True', 'False',
'Unknown').
type: string
type:
description: Type of the condition, currently ('Ready').
enum:
- Ready
type: string
required:
- status
- type
type: object
type: array
type: object
type: object
status:
acceptedNames:
kind: ""
Expand Down

0 comments on commit fb88b22

Please sign in to comment.