Skip to content

Commit

Permalink
[license] Upgraded app version to 2.2.3 and added dgctlStorage.region…
Browse files Browse the repository at this point in the history
… to values
  • Loading branch information
Bolodya1997 committed Sep 20, 2024
1 parent 92a1ac7 commit 2fbe7ce
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/license/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type: application
description: A Helm chart for Kubernetes to deploy License service

version: 1.28.2
appVersion: 2.2.2
appVersion: 2.2.3

maintainers:
- name: 2gis
Expand Down
3 changes: 2 additions & 1 deletion charts/license/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ See the [documentation](https://docs.2gis.com/en/on-premise/architecture/service
| ------------------------ | --------------------------------------- | ------- |
| `dgctlStorage.host` | S3 endpoint. Format: `host:port`. | `""` |
| `dgctlStorage.secure` | If S3 uses https. | `false` |
| `dgctlStorage.region` | S3 region. | `""` |
| `dgctlStorage.bucket` | S3 bucket name. | `""` |
| `dgctlStorage.accessKey` | S3 access key for accessing the bucket. | `""` |
| `dgctlStorage.secretKey` | S3 secret key for accessing the bucket. | `""` |
Expand All @@ -53,7 +54,7 @@ See the [documentation](https://docs.2gis.com/en/on-premise/architecture/service
| Name | Description | Value |
| ------------------ | ------------ | ------------------------- |
| `image.repository` | Repository. | `2gis-on-premise/license` |
| `image.tag` | Tag. | `2.2.2` |
| `image.tag` | Tag. | `2.2.3` |
| `image.pullPolicy` | Pull Policy. | `IfNotPresent` |

### License service application settings
Expand Down
1 change: 1 addition & 0 deletions charts/license/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ data:
storage:
host: {{ required "A valid $.Values.dgctlStorage.host entry is required" .host }}
secure: {{ .secure }}
region: {{ .region }}
bucket: {{ required "A valid $.Values.dgctlStorage.bucket entry is required" .bucket }}
{{- end }}
{{- with .persistence }}
Expand Down
4 changes: 3 additions & 1 deletion charts/license/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ dgctlDockerRegistry: ''

# @param dgctlStorage.host S3 endpoint. Format: `host:port`.
# @param dgctlStorage.secure If S3 uses https.
# @param dgctlStorage.region S3 region.
# @param dgctlStorage.bucket S3 bucket name.
# @param dgctlStorage.accessKey S3 access key for accessing the bucket.
# @param dgctlStorage.secretKey S3 secret key for accessing the bucket.

dgctlStorage:
host: ''
secure: false
region: ''
bucket: ''
accessKey: ''
secretKey: ''
Expand Down Expand Up @@ -63,7 +65,7 @@ imagePullSecrets: []

image:
repository: 2gis-on-premise/license
tag: 2.2.2
tag: 2.2.3
pullPolicy: IfNotPresent

# @section License service application settings
Expand Down

0 comments on commit 2fbe7ce

Please sign in to comment.