diff --git a/slides/k8s/authn-authz.md b/slides/k8s/authn-authz.md index 1040e13c..df0082aa 100644 --- a/slides/k8s/authn-authz.md +++ b/slides/k8s/authn-authz.md @@ -182,23 +182,23 @@ class: extra-details kubectl get sa ``` - ] +] - There should be just one service account in the default namespace: `default`. +There should be just one service account in the default namespace: `default`. - --- +--- - class: extra-details +class: extra-details - ## Finding the secret +## Finding the secret - .exercise[ +.exercise[ - - List the secrets for the `default` service account: - ```bash - kubectl get sa default -o yaml - SECRET=$(kubectl get sa default -o json | jq -r .secrets[0].name) - ``` +- List the secrets for the `default` service account: + ```bash + kubectl get sa default -o yaml + SECRET=$(kubectl get sa default -o json | jq -r .secrets[0].name) + ``` ] diff --git a/slides/k8s/daemonset.md b/slides/k8s/daemonset.md index cbb194d4..e55384a7 100644 --- a/slides/k8s/daemonset.md +++ b/slides/k8s/daemonset.md @@ -36,7 +36,7 @@ ## Creating a daemon set -- Unfortunately, as of Kubernetes 1.10, the CLI cannot create daemon sets +- Unfortunately, as of Kubernetes 1.11, the CLI cannot create daemon sets -- diff --git a/slides/k8s/dashboard.md b/slides/k8s/dashboard.md index 888c1328..b742492f 100644 --- a/slides/k8s/dashboard.md +++ b/slides/k8s/dashboard.md @@ -182,7 +182,7 @@ The dashboard will then ask you which authentication you want to use. kubectl -n kube-system edit service kubernetes-dashboard ``` -- Change `ClusterIP` to `NodePort`, save, and exit +- Change type `type:` from `ClusterIP` to `NodePort`, save, and exit