AWS EKS Cluster Configuration
Guide for configuring AWS EKS for Hava
1. Create a read-only cluster role
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
annotations:
rbac.authorization.kubernetes.io/autoupdate: "true"
labels:
name: hava-ro
rules:
- apiGroups:
- ""
resources: ["*"]
verbs:
- get
- list
- watch
- apiGroups:
- extensions
resources: ["*"]
verbs:
- get
- list
- watch
- apiGroups:
- apps
resources: ["*"]
verbs:
- get
- list
- watch
- apiGroups:
- networking.k8s.io
resources: ["*"]
verbs:
- get
- list
- watch
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: hava-ro
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: hava-ro
subjects:
- apiGroup: rbac.authorization.k8s.io
kind: Group
name: hava-ro2. Update cluster auth configuration
3. Trigger sync on your source
PreviousAutomatic Import of Managed KubernetesNextConverting certificate files to certificate data fields
Last updated
Was this helpful?
