Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
grpc-helloworld
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Frank Sauerburger
grpc-helloworld
Commits
0a3a1e14
Verified
Commit
0a3a1e14
authored
1 year ago
by
Frank Sauerburger
Browse files
Options
Downloads
Patches
Plain Diff
Add CI to build and deploy the service
parent
9005f2d5
Loading
Loading
No related merge requests found
Pipeline
#14669
failed
1 year ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+67
-0
67 additions, 0 deletions
.gitlab-ci.yml
with
67 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
67
−
0
View file @
0a3a1e14
stages
:
-
build
-
deploy
build
:
stage
:
build
allow_failure
:
false
image
:
name
:
gcr.io/kaniko-project/executor:v1.20.1-debug
entrypoint
:
[
"
"
]
rules
:
-
if
:
$CI_COMMIT_TAG
script
:
-
echo "{\"auths\":{\"${DOCKERHUB_REGISTRY}\":{\"auth\":\"$(printf "%s:%s" "${DOCKERHUB_REGISTRY_USER}" "${DOCKERHUB_REGISTRY_PASSWORD}" | base64 | tr -d '\n')\"}}}" > /kaniko/.docker/config.json
-
/kaniko/executor
--context "${CI_PROJECT_DIR}"
--dockerfile "${CI_PROJECT_DIR}/Dockerfile"
--destination "${DOCKERHUB_REPO}:${CI_COMMIT_TAG}"
-
|
cat << EOF > deploy.env
DOCKER_IMAGE=${DOCKERHUB_REPO}:${CI_COMMIT_TAG}
EOF
after_script
:
-
cat deploy.env
artifacts
:
reports
:
dotenv
:
deploy.env
.deploy
:
stage
:
deploy
image
:
alpine/k8s:1.28.3
needs
:
-
job
:
build
artifacts
:
true
script
:
-
sed -i "s;DOCKER_IMAGE;${DOCKER_IMAGE};" kubernetes.yaml
-
sed -i "s;HOST;${HOST};" kubernetes.yaml
-
kubectl config use-context "frank/grpc-helloworld:${AGENT}"
-
kubectl apply -n "${NAMESPACE}" -f kubernetes.yaml
artifacts
:
paths
:
-
kubernetes.yaml
expire_in
:
30d
rules
:
-
if
:
$CI_COMMIT_TAG
deploy_staging
:
# Deploy the current image to the staging machine.
extends
:
.deploy
variables
:
NAMESPACE
:
howlargeisthelhc-staging
AGENT
:
stratus-staging
HOST
:
grpc-helloworld.preview.sauerburger.com
environment
:
name
:
Staging Environment
url
:
https://grpc-helloworld.preview.sauerburger.com/
deploy_production
:
extends
:
.deploy
when
:
manual
variables
:
NAMESPACE
:
howlargeisthelhc-staging
AGENT
:
stratus
HOST
:
grpc-helloworld.sauerburger.cloud
environment
:
name
:
Production Environment
url
:
https://grpc-helloworld.sauerburger.cloud/
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment