Kubernetes labels cheatsheet
Quick commands to work with labels
Create ConfigMap from YAML file Create and use configmap from single values That would create a configmap with a key myval1 = 10000 Of course, you can use multiple –from-literal blocks in a single command. Use a single value from…
Let’s look at the following diagram to create Kubernetes Replication Controller: What to remember when creating ReplicationController apiVersion: v1 You can define number of replicas, selector and template under spec spec->template has its own spec section along side metadata You…