Skip to content

Commit

Permalink
Upgrade CRD manifest to v1
Browse files Browse the repository at this point in the history
  • Loading branch information
rifelpet committed Sep 26, 2021
1 parent 4c933f8 commit 35bd9fd
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 35bd9fd

Please sign in to comment.