Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit d3a393b

Browse files
authored
Merge pull request #46 from vwilburn/master
Added references into readmes
2 parents 232a61a + 3754403 commit d3a393b

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

Lab 2/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@ hello-world-562211614-vz5qw 1/1 Running 0 2m
9494
hello-world-562211614-zksw3 1/1 Running 0 2m
9595
hello-world-562211614-zsp0j 1/1 Running 0 2m
9696
```
97+
Tip! Another way to improve availability is to [add clusters and regions]( https://console.bluemix.net/docs/containers/cs_planning.html#cs_planning_cluster_config) to your deployment, as show in the following diagram:
98+
99+
![HA with more clusters and regions](../images/cluster_ha_roadmap.png)
97100

98101
# Updating and rolling back apps
99102

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ This is a list of some of the namespaces that are commonly used and visible to t
3232

3333
Traditional applications are run on native hardware. A single application does not typically use the full resources of a single machine. We try to run multiple applications on a single machine to avoid wasting resources. We could run multiple copies of the same application, but to provide isolation we use VMs to run multiple application instances (VMs) on the same hardware. These VMs have full operating system stacks which make them relatively large and inefficient due to duplication both at runtime and on disk.
3434

35+
![Containers versus VMs](images/container-vs-vm.jpg)
36+
3537
Containers allow you to share the host OS. This reduces duplication while still providing the isolation. Containers also allow you to drop unneeded files such as system libraries and binaries to save space and reduce your attack surface. If SSHD or LIBC are not installed, they cannot be exploited.
3638

3739
# Get set up
@@ -101,6 +103,9 @@ Kubernetes Infrastructure defines a resource for every purpose. Each resource is
101103
* Stateful Sets is the workload API object used to manage stateful applications.
102104
* and more...
103105

106+
107+
![Relationship of pods, nodes, and containers](/images/container-pod-node-master-relationship.jpg)
108+
104109
Kubernetes does not have the concept of an application. It has simple building blocks that you are required to compose. Kubernetes is a cloud native platform where the internal resource model is the same as the end user resource model.
105110

106111
# Key resources

0 commit comments

Comments
 (0)