├── .gitignore ├── LICENSE ├── README.md └── src ├── csharp ├── .vscode │ ├── launch.json │ └── tasks.json └── helloworld │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Controllers │ └── ValuesController.cs │ ├── Dockerfile │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── helloworld.csproj │ └── obj │ └── Debug │ └── netcoreapp2.1 │ ├── helloworld.AssemblyInfo.cs │ ├── helloworld.AssemblyInfoInputs.cache │ ├── helloworld.csproj.CoreCompileInputs.cache │ └── project.razor.json ├── fsharp └── helloworld │ ├── Controllers │ └── ValuesController.fs │ ├── Program.fs │ ├── Properties │ └── launchSettings.json │ ├── Startup.fs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── helloworld.fsproj │ └── obj │ ├── helloworld.fsproj.nuget.cache │ ├── helloworld.fsproj.nuget.g.props │ ├── helloworld.fsproj.nuget.g.targets │ └── project.assets.json ├── go └── helloworld │ ├── Dockerfile │ ├── compileit.sh │ ├── main.go │ └── rest-api ├── java └── helloworld │ ├── Dockerfile │ ├── README.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── helloWorld │ │ │ │ └── HelloWorldApplication.java │ │ └── resources │ │ │ └── application.properties │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── helloWorld │ │ └── HelloWorldApplicationTests.java │ └── target │ ├── classes │ ├── application.properties │ └── com │ │ └── example │ │ └── helloWorld │ │ ├── HelloWorldApplication$ImageOverlayController.class │ │ └── HelloWorldApplication.class │ ├── helloWorld-1.0.0.jar │ ├── helloWorld-1.0.0.jar.original │ ├── maven-archiver │ └── pom.properties │ ├── maven-status │ └── maven-compiler-plugin │ │ ├── compile │ │ └── default-compile │ │ │ ├── createdFiles.lst │ │ │ └── inputFiles.lst │ │ └── testCompile │ │ └── default-testCompile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ ├── surefire-reports │ ├── TEST-com.example.helloWorld.HelloWorldApplicationTests.xml │ └── com.example.helloWorld.HelloWorldApplicationTests.txt │ └── test-classes │ └── com │ └── example │ └── helloWorld │ └── HelloWorldApplicationTests.class ├── nodejs ├── .dockerignore ├── .gitignore └── helloworld │ ├── Dockerfile │ ├── app.js │ ├── package-lock.json │ └── package.json ├── python └── helloworld │ ├── Dockerfile │ └── helloworld.py └── ruby └── helloworld ├── Dockerfile ├── Gemfile ├── Gemfile.lock └── helloworld.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/README.md -------------------------------------------------------------------------------- /src/csharp/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/csharp/.vscode/launch.json -------------------------------------------------------------------------------- /src/csharp/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/csharp/.vscode/tasks.json -------------------------------------------------------------------------------- /src/csharp/helloworld/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/csharp/helloworld/.vscode/launch.json -------------------------------------------------------------------------------- /src/csharp/helloworld/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/csharp/helloworld/.vscode/tasks.json -------------------------------------------------------------------------------- /src/csharp/helloworld/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/csharp/helloworld/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /src/csharp/helloworld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/csharp/helloworld/Dockerfile -------------------------------------------------------------------------------- /src/csharp/helloworld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/csharp/helloworld/Program.cs -------------------------------------------------------------------------------- /src/csharp/helloworld/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/csharp/helloworld/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/csharp/helloworld/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/csharp/helloworld/Startup.cs -------------------------------------------------------------------------------- /src/csharp/helloworld/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/csharp/helloworld/appsettings.Development.json -------------------------------------------------------------------------------- /src/csharp/helloworld/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/csharp/helloworld/appsettings.json -------------------------------------------------------------------------------- /src/csharp/helloworld/helloworld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/csharp/helloworld/helloworld.csproj -------------------------------------------------------------------------------- /src/csharp/helloworld/obj/Debug/netcoreapp2.1/helloworld.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/csharp/helloworld/obj/Debug/netcoreapp2.1/helloworld.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/csharp/helloworld/obj/Debug/netcoreapp2.1/helloworld.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 3bf96d2dffa2fa7085a1ea35a29238aa41ce5b54 2 | -------------------------------------------------------------------------------- /src/csharp/helloworld/obj/Debug/netcoreapp2.1/helloworld.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/csharp/helloworld/obj/Debug/netcoreapp2.1/helloworld.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /src/csharp/helloworld/obj/Debug/netcoreapp2.1/project.razor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/csharp/helloworld/obj/Debug/netcoreapp2.1/project.razor.json -------------------------------------------------------------------------------- /src/fsharp/helloworld/Controllers/ValuesController.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/fsharp/helloworld/Controllers/ValuesController.fs -------------------------------------------------------------------------------- /src/fsharp/helloworld/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/fsharp/helloworld/Program.fs -------------------------------------------------------------------------------- /src/fsharp/helloworld/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/fsharp/helloworld/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/fsharp/helloworld/Startup.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/fsharp/helloworld/Startup.fs -------------------------------------------------------------------------------- /src/fsharp/helloworld/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/fsharp/helloworld/appsettings.Development.json -------------------------------------------------------------------------------- /src/fsharp/helloworld/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/fsharp/helloworld/appsettings.json -------------------------------------------------------------------------------- /src/fsharp/helloworld/helloworld.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/fsharp/helloworld/helloworld.fsproj -------------------------------------------------------------------------------- /src/fsharp/helloworld/obj/helloworld.fsproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/fsharp/helloworld/obj/helloworld.fsproj.nuget.cache -------------------------------------------------------------------------------- /src/fsharp/helloworld/obj/helloworld.fsproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/fsharp/helloworld/obj/helloworld.fsproj.nuget.g.props -------------------------------------------------------------------------------- /src/fsharp/helloworld/obj/helloworld.fsproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/fsharp/helloworld/obj/helloworld.fsproj.nuget.g.targets -------------------------------------------------------------------------------- /src/fsharp/helloworld/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/fsharp/helloworld/obj/project.assets.json -------------------------------------------------------------------------------- /src/go/helloworld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/go/helloworld/Dockerfile -------------------------------------------------------------------------------- /src/go/helloworld/compileit.sh: -------------------------------------------------------------------------------- 1 | env GOOS=linux GOARCH=amd64 go build -o rest-api -------------------------------------------------------------------------------- /src/go/helloworld/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/go/helloworld/main.go -------------------------------------------------------------------------------- /src/go/helloworld/rest-api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/go/helloworld/rest-api -------------------------------------------------------------------------------- /src/java/helloworld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/Dockerfile -------------------------------------------------------------------------------- /src/java/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/README.md -------------------------------------------------------------------------------- /src/java/helloworld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/mvnw -------------------------------------------------------------------------------- /src/java/helloworld/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/mvnw.cmd -------------------------------------------------------------------------------- /src/java/helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/pom.xml -------------------------------------------------------------------------------- /src/java/helloworld/src/main/java/com/example/helloWorld/HelloWorldApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/src/main/java/com/example/helloWorld/HelloWorldApplication.java -------------------------------------------------------------------------------- /src/java/helloworld/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/java/helloworld/src/test/java/com/example/helloWorld/HelloWorldApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/src/test/java/com/example/helloWorld/HelloWorldApplicationTests.java -------------------------------------------------------------------------------- /src/java/helloworld/target/classes/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/target/classes/application.properties -------------------------------------------------------------------------------- /src/java/helloworld/target/classes/com/example/helloWorld/HelloWorldApplication$ImageOverlayController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/target/classes/com/example/helloWorld/HelloWorldApplication$ImageOverlayController.class -------------------------------------------------------------------------------- /src/java/helloworld/target/classes/com/example/helloWorld/HelloWorldApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/target/classes/com/example/helloWorld/HelloWorldApplication.class -------------------------------------------------------------------------------- /src/java/helloworld/target/helloWorld-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/target/helloWorld-1.0.0.jar -------------------------------------------------------------------------------- /src/java/helloworld/target/helloWorld-1.0.0.jar.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/target/helloWorld-1.0.0.jar.original -------------------------------------------------------------------------------- /src/java/helloworld/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | #Created by Apache Maven 3.5.2 2 | groupId=com.example 3 | artifactId=helloWorld 4 | version=1.0.0 5 | -------------------------------------------------------------------------------- /src/java/helloworld/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst -------------------------------------------------------------------------------- /src/java/helloworld/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst -------------------------------------------------------------------------------- /src/java/helloworld/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst -------------------------------------------------------------------------------- /src/java/helloworld/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst -------------------------------------------------------------------------------- /src/java/helloworld/target/surefire-reports/TEST-com.example.helloWorld.HelloWorldApplicationTests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/target/surefire-reports/TEST-com.example.helloWorld.HelloWorldApplicationTests.xml -------------------------------------------------------------------------------- /src/java/helloworld/target/surefire-reports/com.example.helloWorld.HelloWorldApplicationTests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/target/surefire-reports/com.example.helloWorld.HelloWorldApplicationTests.txt -------------------------------------------------------------------------------- /src/java/helloworld/target/test-classes/com/example/helloWorld/HelloWorldApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/java/helloworld/target/test-classes/com/example/helloWorld/HelloWorldApplicationTests.class -------------------------------------------------------------------------------- /src/nodejs/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /src/nodejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/nodejs/.gitignore -------------------------------------------------------------------------------- /src/nodejs/helloworld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/nodejs/helloworld/Dockerfile -------------------------------------------------------------------------------- /src/nodejs/helloworld/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/nodejs/helloworld/app.js -------------------------------------------------------------------------------- /src/nodejs/helloworld/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/nodejs/helloworld/package-lock.json -------------------------------------------------------------------------------- /src/nodejs/helloworld/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/nodejs/helloworld/package.json -------------------------------------------------------------------------------- /src/python/helloworld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/python/helloworld/Dockerfile -------------------------------------------------------------------------------- /src/python/helloworld/helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/python/helloworld/helloworld.py -------------------------------------------------------------------------------- /src/ruby/helloworld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/ruby/helloworld/Dockerfile -------------------------------------------------------------------------------- /src/ruby/helloworld/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/ruby/helloworld/Gemfile -------------------------------------------------------------------------------- /src/ruby/helloworld/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/ruby/helloworld/Gemfile.lock -------------------------------------------------------------------------------- /src/ruby/helloworld/helloworld.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonSchenck/path-to-kubernetes/HEAD/src/ruby/helloworld/helloworld.rb --------------------------------------------------------------------------------