File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export KUBECONFIG=${AUTH_DIR}/config
22
22
touch ${AUTH_DIR} /config
23
23
24
24
# Setting details of the config
25
- kubectl config set-cluster minikube --certificate-authority=${HOME} /.minikube/ca.crt --embed-certs=true --server=https://$( minikube ip ) :8443
25
+ kubectl config set-cluster minikube --certificate-authority=${HOME} /.minikube/ca.crt --embed-certs=true --server=https://127.0.0.1:52793
26
26
kubectl config set-credentials demo-user --client-key=${AUTH_DIR} /user-key.pem --client-certificate=${AUTH_DIR} /user.crt --embed-certs=true
27
27
kubectl config set-context minikube-demo-user --user demo-user --cluster minikube
28
28
kubectl config use-context minikube-demo-user
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ This includes fewer replicas and a common name prefix "test-"
16
16
kubectl apply -k overlays/test
17
17
```
18
18
19
- ## Launching test stage
19
+ ## Launching production stage
20
20
21
21
This will have more (7) replicas and will change the content generated by the init container to contain some production content.
22
22
Original file line number Diff line number Diff line change 15
15
run : nginx
16
16
spec :
17
17
containers :
18
- - image : nginx:1.16
18
+ - image : nginx:stable-alpine
19
19
name : nginx
20
20
volumeMounts : # <-- Mounting the shared volume
21
21
- name : content
You can’t perform that action at this time.
0 commit comments