Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-k8s
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
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
AlekSIS®
Official
AlekSIS-k8s
Merge requests
!2
Use Configmap instead of ENV variables
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Use Configmap instead of ENV variables
aleksis-configmap
into
master
Overview
0
Commits
1
Pipelines
0
Changes
3
Merged
Tom Teichler
requested to merge
aleksis-configmap
into
master
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
version 1
version 1
0651d6bd
3 years ago
master (base)
and
latest version
latest version
2fa6ba19
1 commit,
3 years ago
version 1
0651d6bd
1 commit,
3 years ago
Show latest version
1 file
+
39
−
39
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
templates/deployment.yaml
+
5
−
10
Options
@@ -34,22 +34,12 @@ spec:
image
:
"
{{
.Values.image.repository
}}:{{
.Values.image.tag
|
default
.Chart.AppVersion
}}"
imagePullPolicy
:
{{
.Values.image.pullPolicy
}}
env
:
-
name
:
ALEKSIS_http__allowed_hosts
value
:
"
['*']"
-
name
:
ALEKSIS_database__host
value
:
"
{{
.Release.Name
}}-postgresql"
-
name
:
ALEKSIS_database__user
value
:
"
{{
.Values.postgresql.postgresqlUsername
}}"
-
name
:
ALEKSIS_database__password
valueFrom
:
secretKeyRef
:
name
:
"
{{
.Release.Name
}}-postgresql"
key
:
postgresql-password
value
:
"
{{
.Values.postgresql.postgresqlPassword
}}"
-
name
:
ALEKSIS_database__name
value
:
"
{{
.Values.postgresql.postgresqlDatabase
}}"
-
name
:
ALEKSIS_redis__host
value
:
"
{{
.Release.Name
}}-redis-master"
-
name
:
ALEKSIS_secret_key
valueFrom
:
secretKeyRef
:
@@ -76,6 +66,8 @@ spec:
name
:
{{
template "aleksis.fullname" .
}}
-aleksis-static
-
mountPath
:
/var/lib/aleksis/backup
name
:
{{
template "aleksis.fullname" .
}}
-aleksis-backup
-
mountPath
:
/etc/aleksis
name
:
{{
template "aleksis.fullname" .
}}
-config
livenessProbe
:
httpGet
:
path
:
/health/
@@ -127,6 +119,9 @@ spec:
-
name
:
{{
template "aleksis.fullname" .
}}
-aleksis-backup
persistentVolumeClaim
:
claimName
:
{{
template "aleksis.fullname" .
}}
-aleksis-backup
-
name
:
{{
template "aleksis.fullname" .
}}
-config
configMap
:
name
:
{{
template "aleksis.fullname" .
}}
-config
{{
- with .Values.nodeSelector
}}
nodeSelector
:
{{
- toYaml . | nindent 8
}}
Loading