Skip to content

Commit

Permalink
Merge pull request #397 from rifelpet/crdv1
Browse files Browse the repository at this point in the history
Upgrade CRD manifest to v1
  • Loading branch information
k8s-ci-robot authored Sep 29, 2021
2 parents 46df8d1 + 35bd9fd commit bdf8b12
Showing 1 changed file with 24 additions and 19 deletions.
43 changes: 24 additions & 19 deletions deploy/iamidentitymapping.yaml
Original file line number Diff line number Diff line change
@@ -1,33 +1,38 @@
---
apiVersion: apiextensions.k8s.io/v1beta1
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: iamidentitymappings.iamauthenticator.k8s.aws
spec:
group: iamauthenticator.k8s.aws
version: v1alpha1
scope: Cluster
names:
plural: iamidentitymappings
singular: iamidentitymapping
kind: IAMIdentityMapping
categories:
- all
subresources:
status: {}
validation:
openAPIV3Schema:
properties:
spec:
required:
- arn
- username
versions:
- name: v1alpha1
served: true
storage: true
schema:
openAPIV3Schema:
type: object
properties:
arn:
type: string
username:
type: string
groups:
type: array
items:
type: string
spec:
type: object
required:
- arn
- username
properties:
arn:
type: string
username:
type: string
groups:
type: array
items:
type: string
subresources:
status: {}

0 comments on commit bdf8b12

Please sign in to comment.