Skip to content

Commit

Permalink
Merge pull request #110 from bedag/feat/pullsecret_handling
Browse files Browse the repository at this point in the history
[common]: Changed `pullSecret` from `string` to `bool`
  • Loading branch information
TobyTheHutt authored Aug 17, 2023
2 parents 9ca5bf2 + 8159fcc commit c0cdb7a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/common/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: common
description: "Bedag's common Helm chart to use for creating other Helm charts"
version: 10.3.1
version: 10.3.2
# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
Expand Down
2 changes: 1 addition & 1 deletion charts/common/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# common

![Version: 10.3.1](https://img.shields.io/badge/Version-10.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 10.3.2](https://img.shields.io/badge/Version-10.3.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Bedag's common Helm chart to use for creating other Helm charts

Expand Down
2 changes: 1 addition & 1 deletion charts/common/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@
],
"properties": {
"pullSecret": {
"type": "string"
"type": "boolean"
}
}
}
Expand Down
5 changes: 3 additions & 2 deletions charts/common/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ defaultTag: latest
# timezone to set as environment variable 'TZ' in each pod. Comment out for using default ("Europe/Zurich")
# timezone: "Europe/Zurich"

# secrets contains the pullSecret for the container registry to pull images.
# secrets contains the pullSecret for the container registry to pull images. Set to 'true' to use a pullSecret.
# The secret name consists of the 'library.name' variable and the suffix '-registry-pull-secret'.
secrets:
data:
registry:
pullSecret: ""
pullSecret: false

# start common.networkpolicy
# -- networkpolicy restricts all access between the pods. To configure allowed connections, go to components.*.networkpolicy.podSelector
Expand Down

0 comments on commit c0cdb7a

Please sign in to comment.