Skip to content

Commit

Permalink
Fixing the syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
OleksandrUA committed Apr 25, 2023
1 parent 54e1431 commit 8124a65
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 43 deletions.
4 changes: 2 additions & 2 deletions charts/common/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.3
version: 0.0.4

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.0.3"
appVersion: "0.0.4"
icon: https://cncf-branding.netlify.app/img/projects/helm/horizontal/color/helm-horizontal-color.png
2 changes: 1 addition & 1 deletion charts/common/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
- name: http
containerPort: {{ .Values.service.containerPort }}
protocol: TCP
{{- end -}}
{{- end }}
env:
{{- range $k, $v := .Values.env }}
- name: {{ $k | quote }}
Expand Down
80 changes: 40 additions & 40 deletions charts/common/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,30 @@

replicaCount: 1

service:
name: ""
port: 80
type: ClusterIP
containerPort: 5000
tls:
enabled: true
issuerName: ""

image:
repository: organization/name
pullPolicy: IfNotPresent
tag: "latest"
service: {}
# name: ""
# port: 80
# type: ClusterIP
# containerPort: 5000
# tls:
# enabled: false
# issuerName: ""

image: {}
# repository: organization/name
# pullPolicy: IfNotPresent
# tag: "latest"

imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations:
eks.amazonaws.com/role-arn: arn:aws:iam::000000000000:role/name
serviceAccount: {}
# # Specifies whether a service account should be created
# create: false
# # Annotations to add to the service account
# annotations:
# eks.amazonaws.com/role-arn: arn:aws:iam::000000000000:role/name

podAnnotations: {}

Expand All @@ -44,19 +44,19 @@ securityContext:
# runAsNonRoot: true
# runAsUser: 1000

ingress:
enabled: true
className: ""
annotations:
{}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
host: example.com

tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
ingress: {}
# enabled: false
# className: ""
# annotations:
# {}
# # kubernetes.io/ingress.class: nginx
# # kubernetes.io/tls-acme: "true"
# host: example.com
#
# tls: []
# # - secretName: chart-example-tls
# # hosts:
# # - chart-example.local

resources:
{}
Expand All @@ -72,21 +72,21 @@ resources:
# cpu: 100m
# memory: 128Mi

autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 100
targetCPUUtilizationPercentage: 80
targetMemoryUtilizationPercentage: 80
autoscaling: {}
# enabled: false
# minReplicas: 1
# maxReplicas: 1
# targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80

nodeSelector: {}

tolerations: []

affinity: {}

externalSecrets:
clusterSecretStoreName: ""
externalSecrets: {}
# clusterSecretStoreName: ""

env: []
# env:
Expand Down

0 comments on commit 8124a65

Please sign in to comment.