[init] init version

This commit is contained in:
2023-10-10 03:58:47 +07:00
commit 73359d5f24
299 changed files with 55909 additions and 0 deletions

23
bitbucket-pipelines.yml Normal file
View File

@@ -0,0 +1,23 @@
pipelines:
branches:
master:
- step:
size: 2x
services:
- docker
caches:
- docker
script: # Modify the commands below to build your repository.
- docker login --username $DOCKER_USERNAME --password $DOCKER_PASSWORD
- docker build -f DockerFile -t 71dev/cm-finance-web:dev .
- docker push 71dev/cm-finance-web:dev
- step:
name: Deploy to kubernates
image: atlassian/pipelines-kubectl
script:
- echo $KUBE_CONFIG_DELL | base64 -d > kubeconfig
- kubectl --insecure-skip-tls-verify --kubeconfig=kubeconfig rollout restart deployment/cm-finance-web-deployment -n cm-finance-web
definitions:
services:
docker:
memory: 7128