♻️ Replace jpetazzo/httpenv with jpetazzo/color

This commit is contained in:
Jérôme Petazzoni
2023-02-20 14:22:02 +01:00
parent 28f0253242
commit 676ebcdd3f
2 changed files with 5 additions and 5 deletions

View File

@@ -404,17 +404,17 @@ class: extra-details
- Create a Deployment running a web server:
```bash
kubectl create deployment web --image=jpetazzo/httpenv
kubectl create deployment blue --image=jpetazzo/color
```
- Scale it so that it spans multiple nodes:
```bash
kubectl scale deployment web --replicas=5
kubectl scale deployment blue --replicas=5
```
- Expose it with a Service:
```bash
kubectl expose deployment web --port=8888
kubectl expose deployment blue --port=8888
```
]

View File

@@ -330,8 +330,8 @@ This is what the spec of a Pod with resources will look like:
```yaml
containers:
- name: httpenv
image: jpetazzo/httpenv
- name: blue
image: jpetazzo/color
resources:
limits:
memory: "100Mi"