27 lines
466 B
Markdown
27 lines
466 B
Markdown
|
# Configuring Quay on Kubernetes
|
||
|
|
||
|
|
||
|
... include old setup here, with extra steps:
|
||
|
|
||
|
# Configuring RBAC for the configuration tool
|
||
|
```bash
|
||
|
kubectl apply -f config-tool-serviceaccount.yaml
|
||
|
```
|
||
|
```bash
|
||
|
kubectl apply -f config-tool-servicetoken-role.yaml
|
||
|
```
|
||
|
```bash
|
||
|
kubectl apply -f config-tool-servicetoken-role-binding.yaml
|
||
|
```
|
||
|
```bash
|
||
|
kubectl apply -f qe-config-tool.yml
|
||
|
```
|
||
|
|
||
|
Make a nodeservice for it:
|
||
|
```bash
|
||
|
kubectl apply -f config-tool-service-nodeport.yml
|
||
|
```
|
||
|
|
||
|
|
||
|
|