Skip to content

Commit

Permalink
Fix some typos (#89)
Browse files Browse the repository at this point in the history
* Fix some typos
  • Loading branch information
alfespa17 authored Nov 13, 2023
1 parent 2bc7ad2 commit 8541268
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 17 deletions.
2 changes: 1 addition & 1 deletion charts/terrakube/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ 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: 3.10.1
version: 3.10.2

# 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
Expand Down
13 changes: 4 additions & 9 deletions charts/terrakube/templates/secrets-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,17 @@ stringData:
AzBuilderExecutorUrl: 'http://terrakube-executor-service:8090/api/v1/terraform-rs'
TerrakubeUiURL: '{{- if .Values.ingress.useTls }}https{{else}}http{{ end }}://{{ .Values.ingress.ui.domain }}'
TERRAKUBE_ADMIN_GROUP: '{{ .Values.security.adminGroup }}'

#Defaulta Redis
TerrakubeRedisPort: '6379'
{{- if .Values.api.defaultRedis -}}

#Default Redis
TerrakubeRedisHostname: 'terrakube-redis-master'
TerrakubeRedisPassword: '{{ .Values.redis.auth.password }}'

TerrakubeRedisPassword: {{ .Values.redis.auth.password }}
{{ else }}

#Custom Redis
TerrakubeRedisHostname: '{{ .Values.api.properties.redisHostname }}'
TerrakubeRedisPassword: '{{ .Values.api.properties.redisPassword }}'

{{- end }}

TerrakubeRedisPort: '6379'

{{- if .Values.storage.defaultStorage -}}

#AWS S3 Storage
Expand Down
10 changes: 3 additions & 7 deletions charts/terrakube/templates/secrets-executor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,18 @@ stringData:
TerrakubeEnableSecurity: 'true'
TerrakubeRegistryDomain: '{{ .Values.ingress.registry.domain }}'
TerrakubeApiUrl: '{{- if .Values.ingress.useTls }}https{{else}}http{{ end }}://{{ .Values.ingress.api.domain }}'

#Defaulta Redis
TerrakubeRedisPort: '6379'
{{- if .Values.api.defaultRedis -}}

#Default Redis
TerrakubeRedisHostname: 'terrakube-redis-master'
TerrakubeRedisPassword: '{{ .Values.redis.auth.password }}'

{{ else }}

#Custom Redis
TerrakubeRedisHostname: '{{ .Values.api.properties.redisHostname }}'
TerrakubeRedisPassword: '{{ .Values.api.properties.redisPassword }}'

{{- end }}

TerrakubeRedisPort: '6379'

{{- if .Values.storage.defaultStorage -}}

#AWS S3 Storage using MINIO
Expand Down

0 comments on commit 8541268

Please sign in to comment.