Skip to content

Commit

Permalink
Merge pull request #47 from foomo/sesamy-gtm-0.1.1
Browse files Browse the repository at this point in the history
feat(sesamy-gtm): add deprecated squadron fields
  • Loading branch information
franklinkim authored Nov 18, 2024
2 parents b8c2f56 + 44a48d5 commit ea2fa7c
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/sesamy-gtm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ annotations:
url: https://github.com/foomo/helm-charts
- name: GTM Changelog
url: https://developers.google.com/tag-platform/tag-manager/server-side/release-notes
version: 0.1.0
version: 0.1.1
appVersion: 2.4.0
10 changes: 9 additions & 1 deletion charts/sesamy-gtm/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# sesamy-gtm

![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.4.0](https://img.shields.io/badge/AppVersion-2.4.0-informational?style=flat-square)
![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.4.0](https://img.shields.io/badge/AppVersion-2.4.0-informational?style=flat-square)

Helm chart for the Sesamy GTM tagging & preview service.

Expand Down Expand Up @@ -57,6 +57,14 @@ Helm chart for the Sesamy GTM tagging & preview service.
| collect.service.type | string | `"ClusterIP"` | Type of the service |
| collect.startupProbe | object | `{}` | Startup probe settings for pods |

### Deprecated

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| fleet | string | `""` | Squadron fleet name |
| squadron | string | `""` | Squadron name |
| unit | string | `""` | Squadron unit name |

### Overrides

| Key | Type | Default | Description |
Expand Down
24 changes: 24 additions & 0 deletions charts/sesamy-gtm/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,14 @@
"title": "collect",
"type": "object"
},
"fleet": {
"default": "",
"deprecated": true,
"description": "Squadron fleet name",
"required": [],
"title": "fleet",
"type": "string"
},
"fullnameOverride": {
"default": "",
"description": "Overrides the chart's computed fullname",
Expand Down Expand Up @@ -1318,6 +1326,14 @@
"title": "serviceMonitor",
"type": "object"
},
"squadron": {
"default": "",
"deprecated": true,
"description": "Squadron name",
"required": [],
"title": "squadron",
"type": "string"
},
"tagging": {
"additionalProperties": false,
"description": "GTM Tagging Settings",
Expand Down Expand Up @@ -1612,6 +1628,14 @@
"title": "tagging",
"type": "object"
},
"unit": {
"default": "",
"deprecated": true,
"description": "Squadron unit name",
"required": [],
"title": "unit",
"type": "string"
},
"updateStrategy": {
"default": "RollingUpdate",
"description": "Deployment update strategy",
Expand Down
22 changes: 22 additions & 0 deletions charts/sesamy-gtm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,28 @@ fullnameOverride: ''
# @section -- Overrides
namespaceOverride: ''

# @schema
# type: string
# deprecated: true
# @schema
# -- Squadron fleet name
# @section -- Deprecated
fleet: ''
# @schema
# type: string
# deprecated: true
# @schema
# -- Squadron name
# @section -- Deprecated
squadron: ''
# @schema
# type: string
# deprecated: true
# @schema
# -- Squadron unit name
# @section -- Deprecated
unit: ''

# @schema
# type: integer
# @schema
Expand Down

0 comments on commit ea2fa7c

Please sign in to comment.