POC for the validation of github actions in a project with svelte-kit, docker and Kubernetes resources.
| Id | Item | Status |
|---|---|---|
| 1 | Pipeline Github Actions | ✓ |
| 2 | Docker Image/Push | ✓ |
| 3 | Docker Image, update version (from 0.0.1 to 0.0.2) | ✓ |
| 4 | Update files that uses app version | ✓ |
| 5 | Call ArgoCD to start delivery | TODO |
| 6 | Teams notification | TODO |
Everything you need to build a Svelte project, powered by create-svelte.
Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
To create a production version of your app:
npm run build
You can preview the production build with npm run preview.
To deploy your app, you may need to install an adapter for your target environment.
To build a docker image:
docker build -t svadmin .
To run the image:
docker run -p 3000:3000 svadmin