Skip to content
Snippets Groups Projects
Commit e21256f0 authored by Oleksandr Kosse (EPAM)'s avatar Oleksandr Kosse (EPAM)
Browse files

Merge branch 'GONRG-5481-remove-limits-from-bootstrap-deployments' into 'master'

GONRG-5481: Remove limits from bootstrap deployments

See merge request !259
parents 6a79c3a4 287b39a1
No related branches found
No related tags found
1 merge request!259GONRG-5481: Remove limits from bootstrap deployments
Pipeline #133432 passed with warnings
......@@ -110,8 +110,6 @@ First you need to set variables in **values.yaml** file using any code editor. S
|------|-------------|------|---------|---------|
**bootstrapImage** | name of the bootstrap image | string | - | yes
**bootstrapServiceAccountName** | name of the bootstrap SA | string | - | yes
**bootstrapLimitsCpu** | bootstrap CPU limit | string | 0.1 | yes
**bootstrapLimitsMemory** | bootstrap memory limit | string | 200M | yes
### Config variables
......
......@@ -27,9 +27,5 @@ spec:
envFrom:
- configMapRef:
name: "{{ .Values.conf.configmap }}-bootstrap"
resources:
limits:
cpu: "{{ .Values.data.bootstrapLimitsCpu }}"
memory: "{{ .Values.data.bootstrapLimitsMemory }}"
restartPolicy: Always
serviceAccountName: "{{ .Values.data.bootstrapServiceAccountName }}"
......@@ -7,8 +7,6 @@ data:
imagePullPolicy: "IfNotPresent"
image: ""
# bootstrap
bootstrapLimitsCpu: "0.1"
bootstrapLimitsMemory: "200M"
bootstrapImage: ""
bootstrapServiceAccountName: ""
conf:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment