File tree Expand file tree Collapse file tree 4 files changed +42
-4
lines changed Expand file tree Collapse file tree 4 files changed +42
-4
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,12 @@ minikube and minishift are essentially equivalent and will be used for the demon
26
26
Download & Install Kubernetes CLI
27
27
[source,bash]
28
28
----
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
31
33
----
32
- Instructions for finding and downloading the a kubectl
34
+ Other instructions for finding and downloading the a kubectl
33
35
https://kubernetes.io/docs/tasks/tools/install-kubectl/#install-kubectl
34
36
35
37
Download & Install Minikube Cluster
@@ -40,7 +42,7 @@ $ chmod +x minikube
40
42
----
41
43
More Minikube releases https://github.com/kubernetes/minikube/releases
42
44
43
- or
45
+ OR
44
46
45
47
Download & Install Minishift Cluster
46
48
[source,bash]
Original file line number Diff line number Diff line change 1
1
= Step 9: Debugging
2
2
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/
Original file line number Diff line number Diff line change
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]
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ kubectl config set-context minikube --namespace=myspace
You can’t perform that action at this time.
0 commit comments