An open API service indexing awesome lists of open source software.

https://github.com/serialt/terraform-module-k8s-rbac


https://github.com/serialt/terraform-module-k8s-rbac

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# Module Input/Output

## Input Variable List

- name
- namespaces
- user
- group

```
openssl genrsa -out dev.key 2048

openssl req -new -key dev.key -out dev.csr -subj "/CN=dev/O=dev"

cat < dev.crt

cp ~/.kube/config local-config
kubectl config set-credentials default --client-key=dev.key --client-certificate=dev.crt --embed-certs=true --kubeconfig=local-config

kubectl config set-context default --cluster=default --user=default --kubeconfig=local-config

```