Skip to content

Commit c8135a9

Browse files
committed
Bump images and quote string in envVars configmap
1 parent 5e05672 commit c8135a9

File tree

21 files changed

+41
-41
lines changed

21 files changed

+41
-41
lines changed

.github/workflows/pre-commit.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ jobs:
77
pre-commit:
88
runs-on: ubuntu-24.04
99
steps:
10-
- uses: actions/checkout@v4.2.2
11-
- uses: actions/setup-go@v5.5.0
10+
- uses: actions/checkout@v5.0.0
11+
- uses: actions/setup-go@v6.0.0
1212
- uses: pre-commit/[email protected]

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v5.0.0
5+
rev: v6.0.0
66
hooks:
77
- id: trailing-whitespace
88
- id: end-of-file-fixer

base-test/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.0.3
18+
version: 0.0.4
1919

2020
dependencies:
2121
- name: base
22-
version: 0.0.3
22+
version: 0.0.4
2323
repository: file://../base

base-test/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# base-test
22

3-
![Version: 0.0.3](https://img.shields.io/badge/Version-0.0.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
3+
![Version: 0.0.4](https://img.shields.io/badge/Version-0.0.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
44

55
A Helm chart for creating a base workloads with configuration
66

77
## Requirements
88

99
| Repository | Name | Version |
1010
|------------|------|---------|
11-
| file://../base | base | 0.0.3 |
11+
| file://../base | base | 0.0.4 |
1212

base/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ apiVersion: v2
22
name: base
33
description: A base library for rendering base workloads with configuration
44
type: library
5-
version: 0.0.3
5+
version: 0.0.4

base/templates/_config_maps.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Usage: {{ include "base.configMaps.envVars.unit" (dict "unit" $unit "ctx" $ctx)
5050
{{ if $unit.data -}}
5151
{{ print "data: " }}
5252
{{ range $k, $v := $unit.data -}}
53-
{{ printf "%s: %s" $k $v | nindent 2 }}
53+
{{ printf "%s: %s" $k ($v | quote) | nindent 2 }}
5454
{{- end }}
5555
{{- end }}
5656
{{- if $unit.binaryData }}

examples/mono/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: mono
33
description: A mono chart for vault-postgres stack
44
type: application
5-
version: 0.0.3
5+
version: 0.0.4
66
dependencies:
77
- name: base
8-
version: 0.0.3
8+
version: 0.0.4
99
repository: file://../../base

examples/mono/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# mono
22

3-
![Version: 0.0.3](https://img.shields.io/badge/Version-0.0.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
3+
![Version: 0.0.4](https://img.shields.io/badge/Version-0.0.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
44

55
A mono chart for vault-postgres stack
66

77
## Requirements
88

99
| Repository | Name | Version |
1010
|------------|------|---------|
11-
| file://../../base | base | 0.0.3 |
11+
| file://../../base | base | 0.0.4 |
1212

1313
## Values
1414

@@ -19,14 +19,14 @@ A mono chart for vault-postgres stack
1919
| postgres.secrets.envVars.data.POSTGRES_PASSWORD | string | `"postgres"` | |
2020
| postgres.service.spec.ports.tcp.port | int | `5432` | |
2121
| postgres.statefulset.spec.template.spec.containers.postgres.image.repository | string | `"postgres"` | |
22-
| postgres.statefulset.spec.template.spec.containers.postgres.image.tag | string | `"17.6"` | |
22+
| postgres.statefulset.spec.template.spec.containers.postgres.image.tag | string | `"18.0"` | |
2323
| postgres.statefulset.spec.volumeClaimTemplates.data.mount.mountPath | string | `"/var/lib/postgresql/data"` | |
2424
| postgres.statefulset.spec.volumeClaimTemplates.data.spec.resources.requests.storage | string | `"20Gi"` | |
2525
| vault.configMaps.files.data."/vault/config/config.json".disable_mlock | bool | `true` | |
2626
| vault.configMaps.files.data."/vault/config/config.json".storage.postgresql.connection_url | string | `"postgres://postgres:postgres@mono-postgres:5432/vault?sslmode=disable"` | |
2727
| vault.configMaps.files.data."/vault/config/config.json".ui | bool | `true` | |
2828
| vault.deployment.spec.template.spec.containers.vault.image.repository | string | `"hashicorp/vault"` | |
29-
| vault.deployment.spec.template.spec.containers.vault.image.tag | string | `"1.20.2"` | |
29+
| vault.deployment.spec.template.spec.containers.vault.image.tag | string | `"1.20.4"` | |
3030
| vault.ingress.spec.rules."vault.example.local".http.paths./.backend.service.port.name | string | `"http"` | |
3131
| vault.ingress.spec.rules."vault.example.local".tls.secretName | string | `"vault-tls-secret"` | |
3232
| vault.nameOverride | string | `"vault"` | |

examples/mono/manifest.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ spec:
143143
- envFrom:
144144
- secretRef:
145145
name: mono-vault-env-vars
146-
image: hashicorp/vault:1.20.2
146+
image: hashicorp/vault:1.20.4
147147
name: vault
148148
ports:
149149
- containerPort: 8200
@@ -188,7 +188,7 @@ spec:
188188
- envFrom:
189189
- secretRef:
190190
name: mono-postgres-env-vars
191-
image: postgres:17.6
191+
image: postgres:18.0
192192
name: postgres
193193
ports:
194194
- containerPort: 5432

examples/mono/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ postgres:
88
postgres:
99
image:
1010
repository: postgres
11-
tag: "17.6"
11+
tag: "18.0"
1212
volumeClaimTemplates:
1313
data:
1414
mount:
@@ -53,7 +53,7 @@ vault:
5353
vault:
5454
image:
5555
repository: hashicorp/vault
56-
tag: 1.20.2
56+
tag: 1.20.4
5757
service:
5858
spec:
5959
ports:

0 commit comments

Comments
 (0)