├── .gitignore ├── Dockerfile ├── README.md ├── deploy-to-kubernetes.yaml ├── environment ├── config-dev.yaml ├── config-prod.yaml ├── dev.properties └── prod.properties ├── helm-chart ├── .helmignore ├── Chart.yaml ├── config-values │ ├── config-dev.yaml │ └── config-prod.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configMap.yaml │ ├── deployment.yaml │ ├── service.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── kubernetes ├── deployment.yaml └── service.yaml ├── kustomize ├── base │ ├── deployment.yaml │ ├── kustomization.yaml │ └── service.yaml └── overlays │ ├── dev │ ├── dev.properties │ └── kustomization.yaml │ ├── local │ ├── kustomization.yaml │ └── local.properties │ └── prod │ ├── deployment-prod.yaml │ ├── kustomization.yaml │ └── prod.properties ├── package.json ├── public ├── config.js ├── favicon.ico ├── index.html ├── logo.png ├── manifest.json └── robots.txt ├── skaffold.yaml └── src ├── App.css ├── App.js ├── App.test.js ├── index.css ├── index.js ├── logo.svg └── serviceWorker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/README.md -------------------------------------------------------------------------------- /deploy-to-kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/deploy-to-kubernetes.yaml -------------------------------------------------------------------------------- /environment/config-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/environment/config-dev.yaml -------------------------------------------------------------------------------- /environment/config-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/environment/config-prod.yaml -------------------------------------------------------------------------------- /environment/dev.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/environment/dev.properties -------------------------------------------------------------------------------- /environment/prod.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/environment/prod.properties -------------------------------------------------------------------------------- /helm-chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/helm-chart/.helmignore -------------------------------------------------------------------------------- /helm-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/helm-chart/Chart.yaml -------------------------------------------------------------------------------- /helm-chart/config-values/config-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/helm-chart/config-values/config-dev.yaml -------------------------------------------------------------------------------- /helm-chart/config-values/config-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/helm-chart/config-values/config-prod.yaml -------------------------------------------------------------------------------- /helm-chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/helm-chart/templates/NOTES.txt -------------------------------------------------------------------------------- /helm-chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/helm-chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-chart/templates/configMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/helm-chart/templates/configMap.yaml -------------------------------------------------------------------------------- /helm-chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/helm-chart/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/helm-chart/templates/service.yaml -------------------------------------------------------------------------------- /helm-chart/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/helm-chart/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /helm-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/helm-chart/values.yaml -------------------------------------------------------------------------------- /kubernetes/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/kubernetes/deployment.yaml -------------------------------------------------------------------------------- /kubernetes/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/kubernetes/service.yaml -------------------------------------------------------------------------------- /kustomize/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/kustomize/base/deployment.yaml -------------------------------------------------------------------------------- /kustomize/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/kustomize/base/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/kustomize/base/service.yaml -------------------------------------------------------------------------------- /kustomize/overlays/dev/dev.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/kustomize/overlays/dev/dev.properties -------------------------------------------------------------------------------- /kustomize/overlays/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/kustomize/overlays/dev/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/overlays/local/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/kustomize/overlays/local/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/overlays/local/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/kustomize/overlays/local/local.properties -------------------------------------------------------------------------------- /kustomize/overlays/prod/deployment-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/kustomize/overlays/prod/deployment-prod.yaml -------------------------------------------------------------------------------- /kustomize/overlays/prod/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/kustomize/overlays/prod/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/overlays/prod/prod.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/kustomize/overlays/prod/prod.properties -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/package.json -------------------------------------------------------------------------------- /public/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/public/config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/public/robots.txt -------------------------------------------------------------------------------- /skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/skaffold.yaml -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/multi-stage-react-app-example/HEAD/src/serviceWorker.js --------------------------------------------------------------------------------