Skip to content

Commit 7fa5877

Browse files
authored
Merge pull request #33 from Xtigyro/v180
Prepare for Releasing Chart's v1.8.0
2 parents 071fb15 + 4a7935c commit 7fa5877

4 files changed

Lines changed: 16 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ numbering uses [semantic versioning](http://semver.org).
55

66
NOTE: The change log until version `v0.2.4` is auto-generated.
77

8+
## [v1.8.0](https://github.com/Xtigyro/puppetserver-helm-chart/tree/v1.8.0) (2020-03-13)
9+
10+
- Better distinction between storage selectors.
11+
- Bump default versions: Puppetserver to `6.9.0` and PuppetDB to `6.9.0`.
12+
13+
[Full Changelog](https://github.com/Xtigyro/puppetserver-helm-chart/compare/v1.7.2...v1.8.0)
14+
815
## [v1.7.2](https://github.com/Xtigyro/puppetserver-helm-chart/tree/v1.7.2) (2020-02-11)
916

1017
- Improve further `Chart.yaml`.

Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: puppetserver-helm-chart
3-
version: 1.7.2
4-
appVersion: 6.8.0
3+
version: 1.8.0
4+
appVersion: 6.9.0
55
description: Puppet automates the delivery and operation of software.
66
keywords: ["puppet", "puppetserver", "automation", "iac", "infrastructure", "cm", "ci", "cd"]
77
home: https://puppet.com/

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,7 @@ Parameter | Description | Default
228228
`puppetdb.extraEnv` | puppetdb additional container env vars |``
229229
`puppetdb.credentials.username`| puppetdb username |`puppetdb`
230230
`puppetdb.credentials.value.password`| puppetdb password |`20-char randomly generated`
231-
`puppetdb.credentials.password.existingSecret`| k8s secret that holds puppetdb password |``
232-
`puppetdb.credentials.password.existingSecretKey`| k8s secret key that holds puppetdb password |``
231+
`puppetdb.credentials.existingSecret`| existing k8s secret that holds puppetdb username and password |``
233232
`puppetboard.enabled` | puppetboard availability | `false`
234233
`puppetboard.name` | puppetboard component label | `puppetboard`
235234
`puppetboard.image` | puppetboard img | `puppet/puppetboard`

values.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
puppetserver:
88
name: puppetserver
99
image: puppet/puppetserver
10-
tag: 6.8.0
10+
tag: 6.9.0
1111
pullPolicy: IfNotPresent
1212
## Horizontal Scaling
1313
## Optional deployment of multiple Puppet Server Compilers
@@ -219,7 +219,7 @@ postgres:
219219
puppetdb:
220220
name: puppetdb
221221
image: puppet/puppetdb
222-
tag: 6.8.1
222+
tag: 6.9.0
223223
pullPolicy: IfNotPresent
224224
resources: {}
225225
# requests:
@@ -236,9 +236,10 @@ puppetdb:
236236
## Override the 20-char random "password" in templates/puppetdb-secret.yaml
237237
password:
238238
value: ""
239-
## Or set the PuppetDB password from a pre-existing K8s secret
240-
existingSecret: ""
241-
existingSecretKey: ""
239+
# if used, the following existing secret must contain "username" and "password" keys, already base64 encoded.
240+
# using this secret supercedes all other credentials settings.
241+
existingSecret: ""
242+
242243

243244
## Puppetboard Configuration
244245
##

0 commit comments

Comments
 (0)