2021-12-01 12:33:11 +00:00
|
|
|
{{- if .Values.api.awsIamAuth.enabled }}
|
2021-01-04 18:13:36 +00:00
|
|
|
apiVersion: apiextensions.k8s.io/v1beta1
|
|
|
|
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
|
|
|
|
properties:
|
|
|
|
arn:
|
|
|
|
type: string
|
|
|
|
username:
|
|
|
|
type: string
|
|
|
|
groups:
|
|
|
|
type: array
|
|
|
|
items:
|
|
|
|
type: string
|
2021-02-22 13:41:32 +00:00
|
|
|
{{- end }}
|