mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-01-31 10:58:28 +00:00
b088086b06
Now, it's all under the notebook umbrella. Seems to be appropriate as it is just my notes after all. I also updated some notes from there. I didn't keep track of what it is this time. Something about more learning notes extracted from my "Learning how to learn" course notes and then some. Lack of time and hurriness just makes it difficult to track but it should be under version control already.
15 lines
562 B
Bash
Executable File
15 lines
562 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Create the namespace with the specified label.
|
|
kubectl create namespaces demo
|
|
kubectl label namespaces demo tier=test
|
|
|
|
# Create the specified deployment.
|
|
kubectl create deployment nginx-alpine --image=nginx:alpine --replicas=3 --namespace=demo
|
|
kubectl label deployment nginx-alpine app=nginx tag=alpine --namespace=demo
|
|
|
|
# Expose the deployment as a service.
|
|
kubectl expose deployment nginx-alpine --namespace=demo --port=8111
|
|
|
|
# Create the config map.
|
|
kubectl create configmaps nginx-version --namespace=demo --from-literal=version=alpine
|