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.
27 lines
564 B
YAML
27 lines
564 B
YAML
# namespace refers to the Kubernetes namespace resource.
|
|
namespace:
|
|
name: demo
|
|
|
|
# replicaCount is the number of instances to run in a replica set.
|
|
replicaCount: 3
|
|
|
|
# image contains the detail of the container image to be used
|
|
image:
|
|
repository: nginx
|
|
tag: alpine
|
|
pullPolicy: IfNotPresent
|
|
|
|
# resources dictate the amount to spend
|
|
resources:
|
|
cpu: 50m
|
|
memory: 256Mi
|
|
|
|
# service configures the Kubernetes service resource
|
|
service:
|
|
type: ClusterIP
|
|
port: 8111
|
|
|
|
# configmap configures the Kubernetes configmap resource
|
|
configmap:
|
|
data: "version: alpine"
|