modified: README.md
new file: manifests/nginx-simple-deployment.yaml
This commit is contained in:
12
README.md
12
README.md
@@ -21,6 +21,7 @@ Kubernetes is an open‑source platform that automates the deployment, scaling,
|
||||
- [Resources](#resources)
|
||||
- [Persistent volumes claims](#persistent-volumes-claims)
|
||||
- [Services Accounts](#services-accounts)
|
||||
- [Namespaces](#namespaces)
|
||||
- [Secrets](#secrets)
|
||||
- [Manifest - Opaque / Base64](#manifest---opaque--base64)
|
||||
- [Manifest - StringData](#manifest---stringdata)
|
||||
@@ -280,6 +281,17 @@ kubectl get secret <secret_name> -o jsonpath='{.data.token}' | base64 -d > ./ser
|
||||
kubectl config view --raw -o jsonpath='{.clusters[0].cluster.certificate-authority-data}'
|
||||
```
|
||||
|
||||
## Namespaces
|
||||
|
||||
``` yaml
|
||||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
||||
name: namespace-name
|
||||
labels:
|
||||
name: namespace-name
|
||||
```
|
||||
|
||||
## Secrets
|
||||
|
||||
### Manifest - Opaque / Base64
|
||||
|
||||
Reference in New Issue
Block a user