[init] -init version

This commit is contained in:
2023-08-04 14:16:52 +07:00
commit 399835a06f
1635 changed files with 104192 additions and 0 deletions

31
bitbucket-pipelines.yml Normal file
View File

@@ -0,0 +1,31 @@
pipelines:
branches:
master:
- step:
# runs-on:
# - self.hosted
# - linux
# - 8x
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/ru-manage-testing-web:dev .
- docker push 71dev/ru-manage-testing-web:dev
- step:
# runs-on:
# - self.hosted
# - linux
# - 8x
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/ru-manage-testing-deployment -n ru
definitions:
services:
docker:
memory: 6144