Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MetaGerMaps
Frontend
Commits
7fb3ea32
Commit
7fb3ea32
authored
1 year ago
by
Dominik Hebeler
Browse files
Options
Downloads
Patches
Plain Diff
fix used images
parent
7f5951eb
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
maps/templates/deployment.yaml
+3
-3
3 additions, 3 deletions
maps/templates/deployment.yaml
maps/values.yaml
+13
-6
13 additions, 6 deletions
maps/values.yaml
with
17 additions
and
10 deletions
.gitlab-ci.yml
+
1
−
1
View file @
7fb3ea32
...
...
@@ -96,4 +96,4 @@ deploy:
before_script
:
-
kubectl config use-context $CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME:maps-deployment
script
:
-
helm -n $KUBE_NAMESPACE upgrade --install $DEPLOYMENT_CHART_NAME maps/
-
helm -n $KUBE_NAMESPACE upgrade --install $DEPLOYMENT_CHART_NAME maps/
--set nginx.image.repository=$CI_REGISTRY_IMAGE/nginx --set nginx.image.tag=$IMAGE_TAG --set fpm.image.repository=$CI_REGISTRY_IMAGE/fpm --set fpm.image.tag=$IMAGE_TAG
This diff is collapsed.
Click to expand it.
maps/templates/deployment.yaml
+
3
−
3
View file @
7fb3ea32
...
...
@@ -34,7 +34,7 @@ spec:
-
name
:
fpm
securityContext
:
{{
- toYaml .Values.securityContext | nindent 12
}}
image
:
"
{{
.Values.image.repository
}}:{{
.Values.image.tag
|
default
.Chart.AppVersion
}}"
image
:
"
{{
.Values.
fpm.
image.repository
}}:{{
.Values.
fpm.
image.tag
|
default
.Chart.AppVersion
}}"
imagePullPolicy
:
{{
.Values.image.pullPolicy
}}
ports
:
-
name
:
fpm
...
...
@@ -55,7 +55,7 @@ spec:
-
name
:
nginx
securityContext
:
{{
- toYaml .Values.securityContext | nindent 12
}}
image
:
"
{{
.Values.image.repository
}}:{{
.Values.image.tag
|
default
.Chart.AppVersion
}}"
image
:
"
{{
.Values.
nginx.
image.repository
}}:{{
.Values.
nginx.
image.tag
|
default
.Chart.AppVersion
}}"
imagePullPolicy
:
{{
.Values.image.pullPolicy
}}
ports
:
-
name
:
http
...
...
@@ -71,7 +71,7 @@ spec:
port
:
http
resources
:
{{
- toYaml .Values.resources | nindent 12
}}
{{
- with .Values.
fpm
.volumeMounts
}}
{{
- with .Values.
nginx
.volumeMounts
}}
volumeMounts
:
{{
- toYaml . | nindent 12
}}
{{
- end
}}
...
...
This diff is collapsed.
Click to expand it.
maps/values.yaml
+
13
−
6
View file @
7fb3ea32
...
...
@@ -4,12 +4,6 @@
replicaCount
:
1
image
:
repository
:
nginx
pullPolicy
:
IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag
:
"
"
imagePullSecrets
:
[]
nameOverride
:
"
"
fullnameOverride
:
"
"
...
...
@@ -87,6 +81,19 @@ volumes: []
fpm
:
volumeMounts
:
[]
image
:
repository
:
nginx
pullPolicy
:
IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag
:
"
"
nginx
:
volumeMounts
:
[]
image
:
repository
:
nginx
pullPolicy
:
IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag
:
"
"
nodeSelector
:
{}
...
...
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