Skip to content

Commit 63e36b5

Browse files
committed
Update Blog “deploying-super-mario-game-on-kubernetes-in-hpe-greenlake-for-private-cloud-enterprise”
1 parent 03933f0 commit 63e36b5

File tree

1 file changed

+62
-1
lines changed

1 file changed

+62
-1
lines changed

content/blog/deploying-super-mario-game-on-kubernetes-in-hpe-greenlake-for-private-cloud-enterprise.md

Lines changed: 62 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,65 @@ Before starting, make sure you have the following:
2222

2323
* A K8s cluster, being provisioned in HPE GreenLake for Private Cloud Enterprise
2424
* The kubectl CLI tool, together with the kubeconfig file for accessing the K8s cluster
25-
* The optional openssl CLI tool, for validating the generated certificates
25+
* The optional openssl CLI tool, for validating the generated certificates
26+
27+
```shell
28+
$ k get all -n metallb-system
29+
NAME READY STATUS RESTARTS AGE
30+
pod/controller-57b4fdc957-dr4h4 1/1 Running 0 18d
31+
pod/speaker-9kx9h 1/1 Running 0 18d
32+
pod/speaker-d6sdh 1/1 Running 0 18d
33+
pod/speaker-gxbbx 1/1 Running 0 18d
34+
pod/speaker-hflbj 1/1 Running 0 18d
35+
pod/speaker-wfw9n 1/1 Running 0 18d
36+
37+
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
38+
service/webhook-service ClusterIP 10.107.242.167 <none> 443/TCP 18d
39+
40+
NAME DESIRED CURRENT READY UP-TO-DATE AVAILABLE NODE SELECTOR AGE
41+
daemonset.apps/speaker 5 5 5 5 5 kubernetes.io/os=linux 18d
42+
43+
NAME READY UP-TO-DATE AVAILABLE AGE
44+
deployment.apps/controller 1/1 1 1 18d
45+
46+
NAME DESIRED CURRENT READY AGE
47+
replicaset.apps/controller-57b4fdc957 1 1 1 18d
48+
```
49+
50+
```shell
51+
$ k get all -n ingress-nginx
52+
NAME READY STATUS RESTARTS AGE
53+
pod/ingress-nginx-controller-5957546d75-zjwjh 1/1 Running 0 15d
54+
55+
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
56+
service/ingress-nginx-controller LoadBalancer 10.98.254.246 10.6.115.251 80:30209/TCP,443:30833/TCP 15d
57+
service/ingress-nginx-controller-admission ClusterIP 10.109.187.223 <none> 443/TCP 15d
58+
59+
NAME READY UP-TO-DATE AVAILABLE AGE
60+
deployment.apps/ingress-nginx-controller 1/1 1 1 15d
61+
62+
NAME DESIRED CURRENT READY AGE
63+
replicaset.apps/ingress-nginx-controller-5957546d75 1 1 1 15d
64+
```
65+
66+
```shell
67+
$ k get all -n cert-manager
68+
NAME READY STATUS RESTARTS AGE
69+
pod/cert-manager-6bcdd5f7c-f7lfw 1/1 Running 0 18d
70+
pod/cert-manager-cainjector-5d4577b4d9-jmpsp 1/1 Running 0 18d
71+
pod/cert-manager-webhook-bf957dc77-s9r2g 1/1 Running 0 18d
72+
73+
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
74+
service/cert-manager ClusterIP 10.109.28.203 <none> 9402/TCP 18d
75+
service/cert-manager-webhook ClusterIP 10.100.82.119 <none> 443/TCP 18d
76+
77+
NAME READY UP-TO-DATE AVAILABLE AGE
78+
deployment.apps/cert-manager 1/1 1 1 18d
79+
deployment.apps/cert-manager-cainjector 1/1 1 1 18d
80+
deployment.apps/cert-manager-webhook 1/1 1 1 18d
81+
82+
NAME DESIRED CURRENT READY AGE
83+
replicaset.apps/cert-manager-6bcdd5f7c 1 1 1 18d
84+
replicaset.apps/cert-manager-cainjector-5d4577b4d9 1 1 1 18d
85+
replicaset.apps/cert-manager-webhook-bf957dc77 1 1 1 18d
86+
```

0 commit comments

Comments
 (0)