Skip to content

Commit a83caa8

Browse files
author
Scott Malkie
committed
Fix images links for 30x; Add buttons for 40x and 50x
1 parent c8b31f3 commit a83caa8

File tree

15 files changed

+132
-28
lines changed

15 files changed

+132
-28
lines changed

03-path-application-development/301-local-development/readme.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:toc:
33
:icons:
44
:linkcss:
5-
:imagesdir: ../resources/images
5+
:imagesdir: ../../resources/images
66

77
For local development purposes, you can create a one-node cluster using https://github.com/kubernetes/minikube[Minikube].
88
Hosted solutions or cloud-based solutions provide the scalability and higher availability for staging or production purposes.

03-path-application-development/302-app-discovery/readme.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:toc:
33
:icons:
44
:linkcss:
5-
:imagesdir: ../resources/images
5+
:imagesdir: ../../resources/images
66

77
This chapter shows an example of how different microservices within an application can use service discovery to locate each other in the infrastructure rather than via hardcoded IP addresses.
88

03-path-application-development/303-app-update/readme.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:toc:
33
:icons:
44
:linkcss:
5-
:imagesdir: ../resources/images
5+
:imagesdir: ../../resources/images
66

77
This chapter explains how an application deployed in a Kubernetes cluster can be updated using link:../developer-concepts#deployment[Deployment]. It also explains Canary Deployment of an application.
88

03-path-application-development/304-app-scaling/readme.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:toc:
33
:icons:
44
:linkcss:
5-
:imagesdir: ../resources/images
5+
:imagesdir: ../../resources/images
66

77
https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/[Horizontal Pod Autoscaling] (HPA) is a Kubernetes feature to dynamically increase/decrease the number of pod replicas based on resource utilization metrics.
88

@@ -115,7 +115,7 @@ You are now ready to continue on with the workshop!
115115

116116
[align="center", cols="2", grid="none", frame="none"]
117117
|=====
118-
|image:button-continue-standard.png[link=../../05-path-next-steps/501-for-further-reading]
118+
|image:button-continue-standard.png[link=../../05-path-next-steps/502-for-further-reading]
119119
|image:button-continue-developer.png[link=../../03-path-application-development/305-app-tracing-with-jaeger-and-x-ray]
120120
|=====
121121

03-path-application-development/306-app-managment-with-helm/readme.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:toc:
33
:icons:
44
:linkcss:
5-
:imagesdir: ../resources/images
5+
:imagesdir: ../../resources/images
66

77
https://github.com/kubernetes/helm[Helm] is a tool for managing https://github.com/kubernetes/charts[Kubernetes charts]. A chart is a collection of files that describe a related set of Kubernetes resources. Read more details in https://github.com/kubernetes/helm/blob/master/docs/charts.md[Charts introduction].
88

03-path-application-development/307-statefulsets-and-pvs/readme.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:toc:
33
:icons:
44
:linkcss:
5-
:imagesdir: ../resources/images
5+
:imagesdir: ../../resources/images
66

77
In this section, we will review how to launch and manage applications using https://kubernetes.io/docs/concepts/abstractions/controllers/statefulsets/[StatefulSets] and https://kubernetes.io/docs/concepts/storage/persistent-volumes/[Persistent Volumes].
88

03-path-application-development/308-cicd-workflows/308-1-codesuite/README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:toc:
33
:icons:
44
:linkcss:
5-
:imagesdir: ../../resources/images
5+
:imagesdir: ../../../resources/images
66

77
= CodeSuite - Continuous Deployment Reference Architecture for Kubernetes
88

04-path-security-and-networking/401-configmaps-and-secrets/readme.adoc

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:toc:
33
:icons:
44
:linkcss:
5-
:imagesdir: ../resources/images
5+
:imagesdir: ../../resources/images
66

77
Separating application code from configuration is one of the factors when building an application using https://12factor.net/[12-factor]. This allows the same application to be deployed across multiple environments, such as dev, test, staging and production. It also allows the application to be more portable.
88

@@ -1003,3 +1003,15 @@ More details about the Docker image used in the Pod is at https://github.com/aru
10031003
vault: HelloWorld
10041004

10051005

1006+
You are now ready to continue on with the workshop!
1007+
1008+
:frame: none
1009+
:grid: none
1010+
:valign: top
1011+
1012+
[align="center", cols="2", grid="none", frame="none"]
1013+
|=====
1014+
|image:button-continue-developer.png[link=../../04-path-security-and-networking/402-authentication-and-authorization/]
1015+
|image:button-continue-operations.png[link=../../04-path-security-and-networking/402-authentication-and-authorization/]
1016+
|=====
1017+

04-path-security-and-networking/402-authentication-and-authorization/readme.adoc

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:toc:
33
:icons:
44
:linkcss:
5-
:imagesdir: ../resources/images
5+
:imagesdir: ../../resources/images
66

77
AWS uses Identity and Access Management (IAM) roles to manage authentication and authorization for AWS Services. An IAM role is an IAM entity that defines a set of permissions for making AWS service requests. For more information about IAM, please see link:https://aws.amazon.com/iam/details/[here].
88

@@ -405,3 +405,15 @@ An error occurred (InvalidAccessKeyId) when calling the ListBuckets operation: T
405405
command terminated with exit code 255
406406
```
407407

408+
You are now ready to continue on with the workshop!
409+
410+
:frame: none
411+
:grid: none
412+
:valign: top
413+
414+
[align="center", cols="2", grid="none", frame="none"]
415+
|=====
416+
|image:button-continue-developer.png[link=../../04-path-security-and-networking/403-admission-policy/]
417+
|image:button-continue-operations.png[link=../../04-path-security-and-networking/403-admission-policy/]
418+
|=====
419+

04-path-security-and-networking/403-admission-policy/readme.adoc

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11

22
= Admission Control for Kubernetes on AWS
3+
:toc:
4+
:icons:
5+
:linkcss:
6+
:imagesdir: ../../resources/images
7+
38
Doc Writer <[email protected]>
49
v1.0, 2018-01-17
510

6-
711
Kubernetes https://kubernetes.io/docs/admin/admission-controllers/[Admission Controllers]
812
perform *semantic validation* of resources during create, update, and delete operations.
913
In Kubernetes 1.8+, you can use the http://www.openpolicyagent.org/[Open Policy Agent] and
@@ -406,3 +410,17 @@ decisions in Kubernetes clusters without modifying or recompiling any
406410
Kubernetes components. Furthermore, once Kubernetes is configured to use OPA as
407411
an External Admission Controller, policies can be modified on-the-fly to
408412
satisfy changing operational requirements.
413+
414+
You are now ready to continue on with the workshop!
415+
416+
:frame: none
417+
:grid: none
418+
:valign: top
419+
420+
[align="center", cols="2", grid="none", frame="none"]
421+
|=====
422+
|image:button-continue-developer.png[link=../../04-path-security-and-networking/404-network-policies/]
423+
|image:button-continue-operations.png[link=../../04-path-security-and-networking/404-network-policies/]
424+
|=====
425+
426+

0 commit comments

Comments
 (0)