30 lines
869 B
Markdown
30 lines
869 B
Markdown
# casa.limbosolutions.com at icarus
|
|
|
|
Use icarus cluster context to all documentation and scrips on this folder. [Check Instructions](#icarus-cluster---access) for how to setup required user and roles on icurus and client kubeconfig.
|
|
|
|
## certificates (wildcard)
|
|
|
|
```bash
|
|
kubectl apply -f ./certs.yaml
|
|
```
|
|
|
|
```bash
|
|
#check certificates
|
|
kubectl get cert -n casa-limbosolutions-com
|
|
```
|
|
|
|
## Icarus cluster - access
|
|
|
|
On user computer.
|
|
*Access to k3s context not required.*
|
|
|
|
```bash
|
|
# create private key
|
|
openssl genrsa -out ../../.env.d/kube/casa@icarus-user.key 2048
|
|
|
|
# create csr
|
|
openssl req -new -key ../../.env.d/kube/casa@icarus-user.key -out ../../.env.d/kube/casa@icarus-user.csr -subj "/CN=casa/O=limbosolutions"
|
|
```
|
|
|
|
Follow instructions to [setup user and roles on icarus k3s cluster](./k3s-admin.md), and setup kubectl config [kube config](./k3s-kubctl-config.md).
|