mirror of
https://github.com/bokysan/docker-postfix.git
synced 2024-11-10 08:55:39 +08:00
Upd: Package helm chart twice -- once with "v" prefix and once without.
This commit is contained in:
parent
064d31ac1b
commit
2371eee943
2 changed files with 8 additions and 3 deletions
9
.github/workflows/tags.yml
vendored
9
.github/workflows/tags.yml
vendored
|
@ -230,10 +230,15 @@ jobs:
|
|||
# TODO: Include the changelog in Chart.yml as annotations.artifacthub.io/changes
|
||||
# See more here: https://artifacthub.io/docs/topics/annotations/helm/#supported-annotations
|
||||
|
||||
- name: Package helm chart
|
||||
- name: Package helm chart with vX.Y.Z
|
||||
uses: WyriHaximus/github-action-helm3@v3
|
||||
with:
|
||||
exec: helm package --app-version $RELEASE_VERSION --version "${RELEASE_VERSION#v}" --destination ./gh-pages helm/mail
|
||||
exec: helm package --app-version $RELEASE_VERSION --version "${RELEASE_VERSION}" --destination ./gh-pages helm/mail
|
||||
|
||||
- name: Package helm chart with X.Y.Z
|
||||
uses: WyriHaximus/github-action-helm3@v3
|
||||
with:
|
||||
exec: helm package --app-version "${RELEASE_VERSION#v}" --version "${RELEASE_VERSION#v}" --destination ./gh-pages helm/mail
|
||||
|
||||
- name: Create helm chart index
|
||||
uses: WyriHaximus/github-action-helm3@v3
|
||||
|
|
|
@ -625,7 +625,7 @@ You may enable metrics on the cart by simply setting `metrics.enabled=true`. Of
|
|||
- Postfix logs will (by default, if you don't override this) go to `/var/log/mail.log` _as well_ as to stdout.
|
||||
- `/var/log/mail.log` will be in plain-text format (always), no matter what you set `LOG_FORMAT` to
|
||||
|
||||
Please se helm chart's `values.yaml` for further configuration options and how to enable `ServiceMonitor`, if you need it for
|
||||
Please see helm chart's `values.yaml` for further configuration options and how to enable `ServiceMonitor`, if you need it for
|
||||
Prometheus.
|
||||
|
||||
## Extending the image
|
||||
|
|
Loading…
Reference in a new issue