Split out crds for aws-iam-authenticator
This commit is contained in:
parent
4fe40a1345
commit
ce7645cb57
32
charts/kubeadm/templates/aws-iam-authenticator/crds.yaml
Normal file
32
charts/kubeadm/templates/aws-iam-authenticator/crds.yaml
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
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
|
@ -1,36 +1,3 @@
|
|||||||
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
|
|
||||||
properties:
|
|
||||||
arn:
|
|
||||||
type: string
|
|
||||||
username:
|
|
||||||
type: string
|
|
||||||
groups:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
type: string
|
|
||||||
---
|
|
||||||
kind: ClusterRole
|
kind: ClusterRole
|
||||||
apiVersion: rbac.authorization.k8s.io/v1
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
metadata:
|
metadata:
|
@ -28,7 +28,8 @@ do
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Processing $dir"
|
echo "Processing $dir"
|
||||||
helm lint $dir && helm --debug package $dir
|
helm lint $dir || true
|
||||||
|
helm --debug package $dir
|
||||||
done
|
done
|
||||||
|
|
||||||
cp $SRCROOT/*.tgz output/
|
cp $SRCROOT/*.tgz output/
|
||||||
|
Loading…
Reference in New Issue
Block a user