├── .cctemplate ├── LICENSE ├── README.md ├── SECURITY.md ├── docs ├── code-of-conduct.md └── contributing.md ├── file-sync-example ├── .idea │ ├── .gitignore │ ├── file-sync-example.iml │ └── modules.xml ├── README.md ├── k8s │ ├── node.yaml │ └── python.yaml ├── node │ ├── .gitignore │ ├── Dockerfile │ ├── package.json │ └── src │ │ └── index.js ├── python │ ├── Dockerfile │ ├── requirements.txt │ └── src │ │ └── app.py └── skaffold.yaml ├── hello-world ├── README.md └── main.go ├── kubernetes-custom-sample └── nodejs │ ├── .eslintignore │ ├── .eslintrc.yml │ ├── .idea │ ├── .gitignore │ ├── externalDependencies.xml │ ├── modules.xml │ └── nodejs.iml │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json │ ├── README.md │ ├── img │ ├── create-k8s-cluster.png │ ├── deploy-config.png │ ├── deploy-success.png │ ├── image-repo.png │ ├── k8s-explorer-empty.png │ ├── k8s-explorer-full.png │ ├── kubernetes-url.png │ ├── my-guestbook.png │ └── status-bar.png │ ├── kubernetes-manifests │ ├── mongo.deployment.yaml │ ├── mongo.service.yaml │ ├── sample-backend.deployment.yaml │ ├── sample-backend.service.yaml │ ├── sample-frontend.deployment.yaml │ └── sample-frontend.service.yaml │ ├── package-lock.json │ ├── package.json │ ├── skaffold.yaml │ └── src │ ├── backend │ ├── Dockerfile │ ├── app.js │ ├── package-lock.json │ ├── package.json │ └── routes │ │ ├── db.js │ │ └── index.js │ └── frontend │ ├── Dockerfile │ ├── app.js │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── assets │ │ ├── KE-hello-world-dark.svg │ │ ├── KE-hello-world.svg │ │ ├── cloud_bg.svg │ │ ├── dark_bg.svg │ │ └── kubernetes-engine-icon.png │ └── css │ │ └── style.css │ └── views │ ├── home.pug │ ├── input.pug │ └── output.pug └── renovate.json /.cctemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/.cctemplate -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/docs/code-of-conduct.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /file-sync-example/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /file-sync-example/.idea/file-sync-example.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/file-sync-example/.idea/file-sync-example.iml -------------------------------------------------------------------------------- /file-sync-example/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/file-sync-example/.idea/modules.xml -------------------------------------------------------------------------------- /file-sync-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/file-sync-example/README.md -------------------------------------------------------------------------------- /file-sync-example/k8s/node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/file-sync-example/k8s/node.yaml -------------------------------------------------------------------------------- /file-sync-example/k8s/python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/file-sync-example/k8s/python.yaml -------------------------------------------------------------------------------- /file-sync-example/node/.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | -------------------------------------------------------------------------------- /file-sync-example/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/file-sync-example/node/Dockerfile -------------------------------------------------------------------------------- /file-sync-example/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/file-sync-example/node/package.json -------------------------------------------------------------------------------- /file-sync-example/node/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/file-sync-example/node/src/index.js -------------------------------------------------------------------------------- /file-sync-example/python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/file-sync-example/python/Dockerfile -------------------------------------------------------------------------------- /file-sync-example/python/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==2.1.2 -------------------------------------------------------------------------------- /file-sync-example/python/src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/file-sync-example/python/src/app.py -------------------------------------------------------------------------------- /file-sync-example/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/file-sync-example/skaffold.yaml -------------------------------------------------------------------------------- /hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/hello-world/README.md -------------------------------------------------------------------------------- /hello-world/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/hello-world/main.go -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/.eslintignore: -------------------------------------------------------------------------------- 1 | **/node_modules/* -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/.eslintrc.yml -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Default ignored files 3 | /workspace.xml -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/.idea/externalDependencies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/.idea/externalDependencies.xml -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/.idea/modules.xml -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/.idea/nodejs.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/.idea/nodejs.iml -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/.vscode/extensions.json -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/.vscode/launch.json -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/.vscode/tasks.json -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/README.md -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/img/create-k8s-cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/img/create-k8s-cluster.png -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/img/deploy-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/img/deploy-config.png -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/img/deploy-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/img/deploy-success.png -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/img/image-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/img/image-repo.png -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/img/k8s-explorer-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/img/k8s-explorer-empty.png -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/img/k8s-explorer-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/img/k8s-explorer-full.png -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/img/kubernetes-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/img/kubernetes-url.png -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/img/my-guestbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/img/my-guestbook.png -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/img/status-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/img/status-bar.png -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/kubernetes-manifests/mongo.deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/kubernetes-manifests/mongo.deployment.yaml -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/kubernetes-manifests/mongo.service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/kubernetes-manifests/mongo.service.yaml -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/kubernetes-manifests/sample-backend.deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/kubernetes-manifests/sample-backend.deployment.yaml -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/kubernetes-manifests/sample-backend.service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/kubernetes-manifests/sample-backend.service.yaml -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/kubernetes-manifests/sample-frontend.deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/kubernetes-manifests/sample-frontend.deployment.yaml -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/kubernetes-manifests/sample-frontend.service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/kubernetes-manifests/sample-frontend.service.yaml -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/package-lock.json -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/package.json -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/skaffold.yaml -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/backend/Dockerfile -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/backend/app.js -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/backend/package-lock.json -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/backend/package.json -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/backend/routes/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/backend/routes/db.js -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/backend/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/backend/routes/index.js -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/frontend/Dockerfile -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/frontend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/frontend/app.js -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/frontend/package-lock.json -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/frontend/package.json -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/frontend/public/assets/KE-hello-world-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/frontend/public/assets/KE-hello-world-dark.svg -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/frontend/public/assets/KE-hello-world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/frontend/public/assets/KE-hello-world.svg -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/frontend/public/assets/cloud_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/frontend/public/assets/cloud_bg.svg -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/frontend/public/assets/dark_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/frontend/public/assets/dark_bg.svg -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/frontend/public/assets/kubernetes-engine-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/frontend/public/assets/kubernetes-engine-icon.png -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/frontend/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/frontend/public/css/style.css -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/frontend/views/home.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/frontend/views/home.pug -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/frontend/views/input.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/frontend/views/input.pug -------------------------------------------------------------------------------- /kubernetes-custom-sample/nodejs/src/frontend/views/output.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/kubernetes-custom-sample/nodejs/src/frontend/views/output.pug -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-code-custom-samples-example/HEAD/renovate.json --------------------------------------------------------------------------------