├── .gitignore ├── 0_quickstart.adoc ├── 0_setenv_minikube.sh ├── 0_setenv_minishift.sh ├── 10_funstuff.adoc ├── 11_crds.adoc ├── 1_installation_started.adoc ├── 2_building_running.adoc ├── 3_logs.adoc ├── 4_kubectl_exec.adoc ├── 5_configuration.adoc ├── 6_discovery.adoc ├── 7_live_ready.adoc ├── 8_deployment_techniques.adoc ├── 9_databases.adoc ├── 9_debugging.adoc ├── config ├── other.properties └── some.properties ├── hello ├── go │ ├── Dockerfile │ ├── myrest │ ├── myrest.go │ └── readme.txt ├── microprofile │ ├── pom.xml │ ├── readme.txt │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── burrsutter │ │ └── swarmdemo │ │ └── rest │ │ └── HelloWorldEndpoint.java ├── nodejs │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── Dockerfile │ ├── hello-http.js │ ├── package-lock.json │ ├── package.json │ └── readme.txt ├── python │ ├── Dockerfile │ ├── app.py │ ├── readme.txt │ └── requirements.txt ├── quarkus │ ├── .dockerignore │ ├── buildNativeLinux.sh │ ├── buildNativeMac.sh │ ├── build_push_docker.sh │ ├── build_push_quay.sh │ ├── dockerbuild.sh │ ├── dockerbuild_openshift.sh │ ├── dockerpush_docker.sh │ ├── dockerpush_quay.sh │ ├── kubefiles │ │ ├── Deployment.yml │ │ ├── Deployment_quay.yml │ │ ├── Dockerfile │ │ ├── Dockerfile.openshift │ │ └── Service.yml │ ├── poller.sh │ ├── pom.xml │ ├── quarkus.log │ ├── readme.txt │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── redhat │ │ └── developer │ │ └── demo │ │ └── GreetingEndpoint.java ├── springboot │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── Dockerfile │ ├── Dockerfile.openshift │ ├── Dockerfile_Java11 │ ├── Dockerfile_Memory │ ├── Dockerfile_Memory2 │ ├── build_push_docker.sh │ ├── build_push_quay.sh │ ├── pom.xml │ ├── readme.txt │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── burrsutter │ │ ├── HellobootApplication.java │ │ └── MyRESTController.java ├── springbootjib │ ├── pom.xml │ ├── readme.txt │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── burrsutter │ │ ├── HellobootApplication.java │ │ └── MyRESTController.java ├── springbootjshift │ ├── pom.xml │ ├── readme.adoc │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── burrsutter │ │ ├── HellobootApplication.java │ │ └── MyRESTController.java └── vertx │ ├── pom.xml │ ├── readme.txt │ └── src │ └── main │ └── java │ └── com │ └── burrsutter │ └── MainVerticle.java ├── hellodata └── boot_postgres │ ├── .devcontainer │ ├── Dockerfile │ └── devcontainer.json │ ├── .gitignore │ ├── Dockerfile │ ├── anotherquestion.json │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── readme.adoc │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── boot_postgres │ │ │ │ ├── BootPostgresApplication.java │ │ │ │ ├── controller │ │ │ │ ├── AnswerController.java │ │ │ │ └── QuestionController.java │ │ │ │ ├── exception │ │ │ │ └── ResourceNotFoundException.java │ │ │ │ ├── model │ │ │ │ ├── Answer.java │ │ │ │ ├── AuditModel.java │ │ │ │ └── Question.java │ │ │ │ └── repository │ │ │ │ ├── AnswerRepository.java │ │ │ │ └── QuestionRepository.java │ │ └── resources │ │ │ ├── application-local-container.properties │ │ │ ├── application-local.properties │ │ │ └── application.properties │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── boot_postgres │ │ └── BootPostgresApplicationTests.java │ └── testquestion.json ├── images ├── chrome_rest_api.png ├── minikube_dashboard.png ├── openshift_dashboard.png ├── pgadmin_add_question.png ├── pgadmin_add_server.png ├── pgadmin_add_server2.png ├── pgadmin_query_questions.png ├── pgadmin_query_questions1.png ├── pgadmin_schema_creation.png ├── stern_output.png └── virtualbox_ui.png ├── kubefiles ├── kafka-strimzi-minikube.yml ├── my-service-8080.yml ├── my-service.yml ├── myboot-deployment-canary.yml ├── myboot-deployment-configuration-secret.yml ├── myboot-deployment-configuration.yml ├── myboot-deployment-liveready.yml ├── myboot-deployment-quay.yml ├── myboot-deployment-resources.yml ├── myboot-deployment.yml ├── myboot-service.yml ├── mybootdata-deployment.yml ├── mybootdata-service.yml ├── mynode-deployment-new.yml ├── mynode-deployment-quay.yml ├── mynode-deployment.yml ├── mynode-service.yml ├── myspace-namespace.yml ├── postgres-deployment.yml ├── postgres-pv.yml ├── postgres-pvc.yml ├── postgres-service.yml └── yourspace-namespace.yml ├── minikube_dashboard.sh ├── pizzas ├── cheese-pizza.yaml ├── clean.sh ├── deploy.sh ├── meat-lovers.yaml ├── pizza-controller.yaml ├── pizza-crd.yaml ├── setnamespace.sh ├── sync.py ├── test-pizza.json ├── test.sh ├── veggie-lovers.yaml └── webhook-py.yaml ├── poll_myboot.sh ├── poll_myboot_shift.sh ├── poll_mynode.sh ├── poll_mynode_shift.sh ├── readme.adoc ├── setcontext.sh ├── start_minikube.sh └── start_minishift.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/.gitignore -------------------------------------------------------------------------------- /0_quickstart.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/0_quickstart.adoc -------------------------------------------------------------------------------- /0_setenv_minikube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/0_setenv_minikube.sh -------------------------------------------------------------------------------- /0_setenv_minishift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/0_setenv_minishift.sh -------------------------------------------------------------------------------- /10_funstuff.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/10_funstuff.adoc -------------------------------------------------------------------------------- /11_crds.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/11_crds.adoc -------------------------------------------------------------------------------- /1_installation_started.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/1_installation_started.adoc -------------------------------------------------------------------------------- /2_building_running.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/2_building_running.adoc -------------------------------------------------------------------------------- /3_logs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/3_logs.adoc -------------------------------------------------------------------------------- /4_kubectl_exec.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/4_kubectl_exec.adoc -------------------------------------------------------------------------------- /5_configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/5_configuration.adoc -------------------------------------------------------------------------------- /6_discovery.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/6_discovery.adoc -------------------------------------------------------------------------------- /7_live_ready.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/7_live_ready.adoc -------------------------------------------------------------------------------- /8_deployment_techniques.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/8_deployment_techniques.adoc -------------------------------------------------------------------------------- /9_databases.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/9_databases.adoc -------------------------------------------------------------------------------- /9_debugging.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/9_debugging.adoc -------------------------------------------------------------------------------- /config/other.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/config/other.properties -------------------------------------------------------------------------------- /config/some.properties: -------------------------------------------------------------------------------- 1 | GREETING=jambo 2 | LOVE=Amour -------------------------------------------------------------------------------- /hello/go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/go/Dockerfile -------------------------------------------------------------------------------- /hello/go/myrest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/go/myrest -------------------------------------------------------------------------------- /hello/go/myrest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/go/myrest.go -------------------------------------------------------------------------------- /hello/go/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/go/readme.txt -------------------------------------------------------------------------------- /hello/microprofile/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/microprofile/pom.xml -------------------------------------------------------------------------------- /hello/microprofile/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/microprofile/readme.txt -------------------------------------------------------------------------------- /hello/microprofile/src/main/java/com/burrsutter/swarmdemo/rest/HelloWorldEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/microprofile/src/main/java/com/burrsutter/swarmdemo/rest/HelloWorldEndpoint.java -------------------------------------------------------------------------------- /hello/nodejs/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/nodejs/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /hello/nodejs/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/nodejs/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /hello/nodejs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/nodejs/Dockerfile -------------------------------------------------------------------------------- /hello/nodejs/hello-http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/nodejs/hello-http.js -------------------------------------------------------------------------------- /hello/nodejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/nodejs/package-lock.json -------------------------------------------------------------------------------- /hello/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/nodejs/package.json -------------------------------------------------------------------------------- /hello/nodejs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/nodejs/readme.txt -------------------------------------------------------------------------------- /hello/python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/python/Dockerfile -------------------------------------------------------------------------------- /hello/python/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/python/app.py -------------------------------------------------------------------------------- /hello/python/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/python/readme.txt -------------------------------------------------------------------------------- /hello/python/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==1.0.2 -------------------------------------------------------------------------------- /hello/quarkus/.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | !target/*-runner -------------------------------------------------------------------------------- /hello/quarkus/buildNativeLinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/buildNativeLinux.sh -------------------------------------------------------------------------------- /hello/quarkus/buildNativeMac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/buildNativeMac.sh -------------------------------------------------------------------------------- /hello/quarkus/build_push_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/build_push_docker.sh -------------------------------------------------------------------------------- /hello/quarkus/build_push_quay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/build_push_quay.sh -------------------------------------------------------------------------------- /hello/quarkus/dockerbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/dockerbuild.sh -------------------------------------------------------------------------------- /hello/quarkus/dockerbuild_openshift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/dockerbuild_openshift.sh -------------------------------------------------------------------------------- /hello/quarkus/dockerpush_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/dockerpush_docker.sh -------------------------------------------------------------------------------- /hello/quarkus/dockerpush_quay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/dockerpush_quay.sh -------------------------------------------------------------------------------- /hello/quarkus/kubefiles/Deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/kubefiles/Deployment.yml -------------------------------------------------------------------------------- /hello/quarkus/kubefiles/Deployment_quay.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/kubefiles/Deployment_quay.yml -------------------------------------------------------------------------------- /hello/quarkus/kubefiles/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/kubefiles/Dockerfile -------------------------------------------------------------------------------- /hello/quarkus/kubefiles/Dockerfile.openshift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/kubefiles/Dockerfile.openshift -------------------------------------------------------------------------------- /hello/quarkus/kubefiles/Service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/kubefiles/Service.yml -------------------------------------------------------------------------------- /hello/quarkus/poller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/poller.sh -------------------------------------------------------------------------------- /hello/quarkus/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/pom.xml -------------------------------------------------------------------------------- /hello/quarkus/quarkus.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/quarkus.log -------------------------------------------------------------------------------- /hello/quarkus/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/readme.txt -------------------------------------------------------------------------------- /hello/quarkus/src/main/java/com/redhat/developer/demo/GreetingEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/quarkus/src/main/java/com/redhat/developer/demo/GreetingEndpoint.java -------------------------------------------------------------------------------- /hello/springboot/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springboot/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /hello/springboot/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springboot/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /hello/springboot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springboot/Dockerfile -------------------------------------------------------------------------------- /hello/springboot/Dockerfile.openshift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springboot/Dockerfile.openshift -------------------------------------------------------------------------------- /hello/springboot/Dockerfile_Java11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springboot/Dockerfile_Java11 -------------------------------------------------------------------------------- /hello/springboot/Dockerfile_Memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springboot/Dockerfile_Memory -------------------------------------------------------------------------------- /hello/springboot/Dockerfile_Memory2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springboot/Dockerfile_Memory2 -------------------------------------------------------------------------------- /hello/springboot/build_push_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springboot/build_push_docker.sh -------------------------------------------------------------------------------- /hello/springboot/build_push_quay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springboot/build_push_quay.sh -------------------------------------------------------------------------------- /hello/springboot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springboot/pom.xml -------------------------------------------------------------------------------- /hello/springboot/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springboot/readme.txt -------------------------------------------------------------------------------- /hello/springboot/src/main/java/com/burrsutter/HellobootApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springboot/src/main/java/com/burrsutter/HellobootApplication.java -------------------------------------------------------------------------------- /hello/springboot/src/main/java/com/burrsutter/MyRESTController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springboot/src/main/java/com/burrsutter/MyRESTController.java -------------------------------------------------------------------------------- /hello/springbootjib/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springbootjib/pom.xml -------------------------------------------------------------------------------- /hello/springbootjib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springbootjib/readme.txt -------------------------------------------------------------------------------- /hello/springbootjib/src/main/java/com/burrsutter/HellobootApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springbootjib/src/main/java/com/burrsutter/HellobootApplication.java -------------------------------------------------------------------------------- /hello/springbootjib/src/main/java/com/burrsutter/MyRESTController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springbootjib/src/main/java/com/burrsutter/MyRESTController.java -------------------------------------------------------------------------------- /hello/springbootjshift/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springbootjshift/pom.xml -------------------------------------------------------------------------------- /hello/springbootjshift/readme.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springbootjshift/readme.adoc -------------------------------------------------------------------------------- /hello/springbootjshift/src/main/java/com/burrsutter/HellobootApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springbootjshift/src/main/java/com/burrsutter/HellobootApplication.java -------------------------------------------------------------------------------- /hello/springbootjshift/src/main/java/com/burrsutter/MyRESTController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/springbootjshift/src/main/java/com/burrsutter/MyRESTController.java -------------------------------------------------------------------------------- /hello/vertx/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/vertx/pom.xml -------------------------------------------------------------------------------- /hello/vertx/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/vertx/readme.txt -------------------------------------------------------------------------------- /hello/vertx/src/main/java/com/burrsutter/MainVerticle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hello/vertx/src/main/java/com/burrsutter/MainVerticle.java -------------------------------------------------------------------------------- /hellodata/boot_postgres/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /hellodata/boot_postgres/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /hellodata/boot_postgres/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/.gitignore -------------------------------------------------------------------------------- /hellodata/boot_postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/Dockerfile -------------------------------------------------------------------------------- /hellodata/boot_postgres/anotherquestion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/anotherquestion.json -------------------------------------------------------------------------------- /hellodata/boot_postgres/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/mvnw -------------------------------------------------------------------------------- /hellodata/boot_postgres/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/mvnw.cmd -------------------------------------------------------------------------------- /hellodata/boot_postgres/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/pom.xml -------------------------------------------------------------------------------- /hellodata/boot_postgres/readme.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/readme.adoc -------------------------------------------------------------------------------- /hellodata/boot_postgres/src/main/java/com/example/boot_postgres/BootPostgresApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/src/main/java/com/example/boot_postgres/BootPostgresApplication.java -------------------------------------------------------------------------------- /hellodata/boot_postgres/src/main/java/com/example/boot_postgres/controller/AnswerController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/src/main/java/com/example/boot_postgres/controller/AnswerController.java -------------------------------------------------------------------------------- /hellodata/boot_postgres/src/main/java/com/example/boot_postgres/controller/QuestionController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/src/main/java/com/example/boot_postgres/controller/QuestionController.java -------------------------------------------------------------------------------- /hellodata/boot_postgres/src/main/java/com/example/boot_postgres/exception/ResourceNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/src/main/java/com/example/boot_postgres/exception/ResourceNotFoundException.java -------------------------------------------------------------------------------- /hellodata/boot_postgres/src/main/java/com/example/boot_postgres/model/Answer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/src/main/java/com/example/boot_postgres/model/Answer.java -------------------------------------------------------------------------------- /hellodata/boot_postgres/src/main/java/com/example/boot_postgres/model/AuditModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/src/main/java/com/example/boot_postgres/model/AuditModel.java -------------------------------------------------------------------------------- /hellodata/boot_postgres/src/main/java/com/example/boot_postgres/model/Question.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/src/main/java/com/example/boot_postgres/model/Question.java -------------------------------------------------------------------------------- /hellodata/boot_postgres/src/main/java/com/example/boot_postgres/repository/AnswerRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/src/main/java/com/example/boot_postgres/repository/AnswerRepository.java -------------------------------------------------------------------------------- /hellodata/boot_postgres/src/main/java/com/example/boot_postgres/repository/QuestionRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/src/main/java/com/example/boot_postgres/repository/QuestionRepository.java -------------------------------------------------------------------------------- /hellodata/boot_postgres/src/main/resources/application-local-container.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/src/main/resources/application-local-container.properties -------------------------------------------------------------------------------- /hellodata/boot_postgres/src/main/resources/application-local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/src/main/resources/application-local.properties -------------------------------------------------------------------------------- /hellodata/boot_postgres/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/src/main/resources/application.properties -------------------------------------------------------------------------------- /hellodata/boot_postgres/src/test/java/com/example/boot_postgres/BootPostgresApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/src/test/java/com/example/boot_postgres/BootPostgresApplicationTests.java -------------------------------------------------------------------------------- /hellodata/boot_postgres/testquestion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/hellodata/boot_postgres/testquestion.json -------------------------------------------------------------------------------- /images/chrome_rest_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/images/chrome_rest_api.png -------------------------------------------------------------------------------- /images/minikube_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/images/minikube_dashboard.png -------------------------------------------------------------------------------- /images/openshift_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/images/openshift_dashboard.png -------------------------------------------------------------------------------- /images/pgadmin_add_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/images/pgadmin_add_question.png -------------------------------------------------------------------------------- /images/pgadmin_add_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/images/pgadmin_add_server.png -------------------------------------------------------------------------------- /images/pgadmin_add_server2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/images/pgadmin_add_server2.png -------------------------------------------------------------------------------- /images/pgadmin_query_questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/images/pgadmin_query_questions.png -------------------------------------------------------------------------------- /images/pgadmin_query_questions1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/images/pgadmin_query_questions1.png -------------------------------------------------------------------------------- /images/pgadmin_schema_creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/images/pgadmin_schema_creation.png -------------------------------------------------------------------------------- /images/stern_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/images/stern_output.png -------------------------------------------------------------------------------- /images/virtualbox_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/images/virtualbox_ui.png -------------------------------------------------------------------------------- /kubefiles/kafka-strimzi-minikube.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/kafka-strimzi-minikube.yml -------------------------------------------------------------------------------- /kubefiles/my-service-8080.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/my-service-8080.yml -------------------------------------------------------------------------------- /kubefiles/my-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/my-service.yml -------------------------------------------------------------------------------- /kubefiles/myboot-deployment-canary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/myboot-deployment-canary.yml -------------------------------------------------------------------------------- /kubefiles/myboot-deployment-configuration-secret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/myboot-deployment-configuration-secret.yml -------------------------------------------------------------------------------- /kubefiles/myboot-deployment-configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/myboot-deployment-configuration.yml -------------------------------------------------------------------------------- /kubefiles/myboot-deployment-liveready.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/myboot-deployment-liveready.yml -------------------------------------------------------------------------------- /kubefiles/myboot-deployment-quay.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/myboot-deployment-quay.yml -------------------------------------------------------------------------------- /kubefiles/myboot-deployment-resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/myboot-deployment-resources.yml -------------------------------------------------------------------------------- /kubefiles/myboot-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/myboot-deployment.yml -------------------------------------------------------------------------------- /kubefiles/myboot-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/myboot-service.yml -------------------------------------------------------------------------------- /kubefiles/mybootdata-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/mybootdata-deployment.yml -------------------------------------------------------------------------------- /kubefiles/mybootdata-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/mybootdata-service.yml -------------------------------------------------------------------------------- /kubefiles/mynode-deployment-new.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/mynode-deployment-new.yml -------------------------------------------------------------------------------- /kubefiles/mynode-deployment-quay.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/mynode-deployment-quay.yml -------------------------------------------------------------------------------- /kubefiles/mynode-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/mynode-deployment.yml -------------------------------------------------------------------------------- /kubefiles/mynode-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/mynode-service.yml -------------------------------------------------------------------------------- /kubefiles/myspace-namespace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/myspace-namespace.yml -------------------------------------------------------------------------------- /kubefiles/postgres-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/postgres-deployment.yml -------------------------------------------------------------------------------- /kubefiles/postgres-pv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/postgres-pv.yml -------------------------------------------------------------------------------- /kubefiles/postgres-pvc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/postgres-pvc.yml -------------------------------------------------------------------------------- /kubefiles/postgres-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/postgres-service.yml -------------------------------------------------------------------------------- /kubefiles/yourspace-namespace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/kubefiles/yourspace-namespace.yml -------------------------------------------------------------------------------- /minikube_dashboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/minikube_dashboard.sh -------------------------------------------------------------------------------- /pizzas/cheese-pizza.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/pizzas/cheese-pizza.yaml -------------------------------------------------------------------------------- /pizzas/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/pizzas/clean.sh -------------------------------------------------------------------------------- /pizzas/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/pizzas/deploy.sh -------------------------------------------------------------------------------- /pizzas/meat-lovers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/pizzas/meat-lovers.yaml -------------------------------------------------------------------------------- /pizzas/pizza-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/pizzas/pizza-controller.yaml -------------------------------------------------------------------------------- /pizzas/pizza-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/pizzas/pizza-crd.yaml -------------------------------------------------------------------------------- /pizzas/setnamespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/pizzas/setnamespace.sh -------------------------------------------------------------------------------- /pizzas/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/pizzas/sync.py -------------------------------------------------------------------------------- /pizzas/test-pizza.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/pizzas/test-pizza.json -------------------------------------------------------------------------------- /pizzas/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/pizzas/test.sh -------------------------------------------------------------------------------- /pizzas/veggie-lovers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/pizzas/veggie-lovers.yaml -------------------------------------------------------------------------------- /pizzas/webhook-py.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/pizzas/webhook-py.yaml -------------------------------------------------------------------------------- /poll_myboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/poll_myboot.sh -------------------------------------------------------------------------------- /poll_myboot_shift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/poll_myboot_shift.sh -------------------------------------------------------------------------------- /poll_mynode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/poll_mynode.sh -------------------------------------------------------------------------------- /poll_mynode_shift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/poll_mynode_shift.sh -------------------------------------------------------------------------------- /readme.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/readme.adoc -------------------------------------------------------------------------------- /setcontext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/setcontext.sh -------------------------------------------------------------------------------- /start_minikube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/start_minikube.sh -------------------------------------------------------------------------------- /start_minishift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burrsutter/9stepsawesome/HEAD/start_minishift.sh --------------------------------------------------------------------------------