Skip to content

Commit 88ebfb8

Browse files
committed
added main readme
1 parent d9aa810 commit 88ebfb8

File tree

4 files changed

+42
-4
lines changed

4 files changed

+42
-4
lines changed

1_installation_started.adoc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,12 @@ minikube and minishift are essentially equivalent and will be used for the demon
2626
Download & Install Kubernetes CLI
2727
[source,bash]
2828
----
29-
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.10.1/bin/darwin/amd64/kubectl
30-
chmod +x kubectl
29+
$ curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.10.1/bin/darwin/amd64/kubectl
30+
$ chmod +x kubectl
31+
# or
32+
brew install kubectl
3133
----
32-
Instructions for finding and downloading the a kubectl
34+
Other instructions for finding and downloading the a kubectl
3335
https://kubernetes.io/docs/tasks/tools/install-kubectl/#install-kubectl
3436

3537
Download & Install Minikube Cluster
@@ -40,7 +42,7 @@ $ chmod +x minikube
4042
----
4143
More Minikube releases https://github.com/kubernetes/minikube/releases
4244

43-
or
45+
OR
4446

4547
Download & Install Minishift Cluster
4648
[source,bash]

9_debugging.adoc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,16 @@
11
= Step 9: Debugging
22
Burr Sutter <burrsuter@gmail.com>
3+
4+
== Java
5+
mvn fabric8:debug
6+
7+
https://hub.docker.com/r/fabric8/java-jboss-openjdk8-jdk/
8+
9+
https://maven.fabric8.io/#fabric8:debug
10+
11+
https://code.visualstudio.com/docs/java/java-kubernetes
12+
13+
https://code.visualstudio.com/blogs/2017/09/28/java-debug
14+
15+
== Node.js
16+
https://developers.redhat.com/blog/2018/05/15/debug-your-node-js-application-on-openshift-with-chrome-devtools/

readme.adoc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
3+
include::1_installation_started.adoc[Step 1: Installation & Getting Started]
4+
5+
include::2_building_running.adoc[Step 2: Building Images & Running Containers]
6+
7+
include::3_kubectl_exec.adoc[Step 3: exec Magic]
8+
9+
include::4_logs.adoc[Step 4: Logs]
10+
11+
include::5_configuration.adoc[Step 5: Configuration]
12+
13+
include::6_discovery.adoc[Step 6: Service Discovery & Load-balancing]
14+
15+
include::7_live_ready.adoc[Step 7: Live and Ready]
16+
17+
include::8_deployment_techniques.adoc[Step 8: Deployment Techniques: Blue/Green, Canary]
18+
19+
include::9_debugging.adoc[Step 9: Debugging]

setcontext.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
kubectl config set-context minikube --namespace=myspace

0 commit comments

Comments
 (0)