mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 17:49:59 +00:00
- volumes (general overview) - building with the docker engine (bind-mounting the docker socket) - building with kaniko (and init containers) - managing configuration (configmaps, downward api) Also added a new-content.yml file with just the new content (for easier review), containing my plans for future chapters.
16 lines
244 B
YAML
16 lines
244 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: registry
|
|
spec:
|
|
containers:
|
|
- name: registry
|
|
image: registry
|
|
env:
|
|
- name: REGISTRY_HTTP_ADDR
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: registry
|
|
key: http.addr
|
|
|