Skip to content

Commit

Permalink
Merge pull request #56 from shopware/new-operator
Browse files Browse the repository at this point in the history
fix: new operator version 0.0.17
  • Loading branch information
TrayserCassa authored Oct 8, 2024
2 parents 3a08655 + c03ff7a commit 83adc4c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 10 deletions.
7 changes: 3 additions & 4 deletions charts/shopware/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies:
version: 1.14.0
- name: operator
repository: https://shopware.github.io/helm-charts/
version: 0.0.13
version: 0.0.17
- name: valkey
repository: oci://registry-1.docker.io/bitnamicharts
version: 1.0.1
Expand All @@ -29,6 +29,5 @@ dependencies:
- name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 25.24.1
digest: sha256:32751636f3bf30936dfc68134e6418c4e4db50baa1eb6bc0722014e3735865d3
generated: "2024-10-03T10:27:07.462536+02:00"

digest: sha256:a54d5e5c627ee619e9fe2c62342fa2545c3d060c9e4c856cd3146016e1bd8460
generated: "2024-10-08T17:17:57.74952829+02:00"
6 changes: 3 additions & 3 deletions charts/shopware/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.11
version: 0.0.12

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.0.11"
appVersion: "0.0.12"

dependencies:
- name: pxc-operator
Expand All @@ -31,7 +31,7 @@ dependencies:

- name: operator
alias: shopware-operator
version: 0.0.13
version: 0.0.17
repository: https://shopware.github.io/helm-charts/
condition: shopware-operator.enabled

Expand Down
16 changes: 13 additions & 3 deletions charts/shopware/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,20 @@ store:
# annotations:

# You can run commands before and after the /setup is executed.
# The commands will be chained like this: <before> && /setup && <after>
# The commands will be chained like this: <before> /setup <after>
# So make sure to add a `;` for execute always or `&&` for chaining and exit if error
# occurs.
# setupHook:
# before: echo This is a command before setup will executed
# after: echo This is a command after setup is executed
# before: |
# echo This is a command before setup will executed;
# after: |
# ; echo This is a command after setup is executed;
# ps -ef | grep 'fluent-bit' | grep -v kill | grep -v grep | awk '{print $2}' | xargs -r kill -15
# true;

# migrationHook:
# before: echo This is a command before migration will executed;
# after: echo This is a command after migration is executed;

# Dynamic is the default here. If you are more experience user then change these values as you like.
# fpm:
Expand Down

0 comments on commit 83adc4c

Please sign in to comment.