Skip to content

Commit 412e78b

Browse files
Updating for new repository location
1 parent 949a23f commit 412e78b

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

projects/frontend/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM getwarped/warp0-debian10-python37:latest
1+
FROM getwarped/warp0-debian10-python38:latest
22

33
COPY --chown=1001:0 . /opt/app-root/src
44

templates/frontend-v1/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
runAsUser: 1001
2222
containers:
2323
- name: blog
24-
image: ghcr.io/vmware-tanzu-labs/lab-k8s-fundamentals-frontend:2.0
24+
image: ghcr.io/educates/lab-k8s-fundamentals-frontend:2.0
2525
securityContext:
2626
allowPrivilegeEscalation: false
2727
capabilities:

templates/frontend-v2/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
runAsUser: 1001
2222
containers:
2323
- name: blog
24-
image: ghcr.io/vmware-tanzu-labs/lab-k8s-fundamentals-frontend:2.0
24+
image: ghcr.io/educates/lab-k8s-fundamentals-frontend:2.0
2525
securityContext:
2626
allowPrivilegeEscalation: false
2727
capabilities:

templates/frontend-v3/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
runAsUser: 1001
2222
containers:
2323
- name: blog
24-
image: ghcr.io/vmware-tanzu-labs/lab-k8s-fundamentals-frontend:2.0
24+
image: ghcr.io/educates/lab-k8s-fundamentals-frontend:2.0
2525
securityContext:
2626
allowPrivilegeEscalation: false
2727
capabilities:

templates/frontend-v4/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
runAsUser: 1001
2222
containers:
2323
- name: blog
24-
image: ghcr.io/vmware-tanzu-labs/lab-k8s-fundamentals-frontend:2.0
24+
image: ghcr.io/educates/lab-k8s-fundamentals-frontend:2.0
2525
securityContext:
2626
allowPrivilegeEscalation: false
2727
capabilities:

templates/frontend-v5/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
- blog
3434
containers:
3535
- name: blog
36-
image: ghcr.io/vmware-tanzu-labs/lab-k8s-fundamentals-frontend:2.0
36+
image: ghcr.io/educates/lab-k8s-fundamentals-frontend:2.0
3737
securityContext:
3838
allowPrivilegeEscalation: false
3939
capabilities:

templates/frontend/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
- blog
3434
containers:
3535
- name: blog
36-
image: ghcr.io/vmware-tanzu-labs/lab-k8s-fundamentals-frontend:2.0
36+
image: ghcr.io/educates/lab-k8s-fundamentals-frontend:2.0
3737
securityContext:
3838
allowPrivilegeEscalation: false
3939
capabilities:

workshop/content/exercises/06-deployment-resource.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ An alternative is to have `kubectl` create it for you. For a `deployment`, you c
1616
kubectl create deployment --help
1717
```
1818

19-
For the deployment of the front end web application, the container image we want to use is `ghcr.io/vmware-tanzu-labs/lab-k8s-fundamentals-frontend:2.0`.
19+
For the deployment of the front end web application, the container image we want to use is `ghcr.io/educates/lab-k8s-fundamentals-frontend:2.0`.
2020

2121
To see what `kubectl create deployment` would create for us run:
2222

2323
```execute
24-
kubectl create deployment blog --image ghcr.io/vmware-tanzu-labs/lab-k8s-fundamentals-frontend:2.0 --port 8080 --replicas=2 --dry-run=client -o yaml
24+
kubectl create deployment blog --image ghcr.io/educates/lab-k8s-fundamentals-frontend:2.0 --port 8080 --replicas=2 --dry-run=client -o yaml
2525
```
2626

2727
This should yield:
@@ -49,7 +49,7 @@ spec:
4949
securityContext:
5050
runAsUser: 1001
5151
containers:
52-
- image: ghcr.io/vmware-tanzu-labs/lab-k8s-fundamentals-frontend:2.0
52+
- image: ghcr.io/educates/lab-k8s-fundamentals-frontend:2.0
5353
name: app-k8s-fundamentals-frontend
5454
ports:
5555
- containerPort: 8080

workshop/content/exercises/07-replicasets-and-pods.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ In this you will see that the `spec` section contains:
4444
pod-template-hash: 7b747746cc
4545
spec:
4646
containers:
47-
- image: ghcr.io/vmware-tanzu-labs/lab-k8s-fundamentals-frontend:2.0
47+
- image: ghcr.io/educates/lab-k8s-fundamentals-frontend:2.0
4848
imagePullPolicy: Always
4949
name: blog
5050
ports:

0 commit comments

Comments
 (0)