Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix release pr workflow #2333

Merged
merged 3 commits into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions .github/workflows/_release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,14 @@ jobs:
sed -i -e "s/^version: .*$/version: ${RELEASE_TAG}/" charts/vald-helm-operator/Chart.yaml
sed -i -r "s/^(\s*)tag\s*:\s*v[0-9]+\.[0-9]+\.[0-9]+\s*$/\1tag: ${RELEASE_TAG}/" charts/vald-helm-operator/values.yaml

make helm/schema/vald
make helm/schema/vald-helm-operator
make helm/schema/crd/vald
make helm/schema/crd/vald-helm-operator
make helm/schema/all
make helm/schema/crd/all
make k8s/manifest/update
make k8s/manifest/helm-operator/update
make k8s/manifest/benchmark-operator/update
make helm/docs/vald
make helm/docs/vald-helm-operator
make helm/docs/vald-readreplica

BODY=""
if [ ! -z "${PR_NUM}" ]; then
Expand All @@ -114,6 +114,14 @@ jobs:
charts/vald/README.md \
charts/vald/values.schema.json \
charts/vald/values.yaml \
charts/vald-readreplica/Chart.yaml \
charts/vald-readreplica/README.md \
charts/vald-benchmark-operator/Chart.yaml \
charts/vald-benchmark-operator/README.md \
charts/vald-benchmark-operator/job-values.schema.json \
charts/vald-benchmark-operator/scenario-values.schema.json \
charts/vald-benchmark-operator/values.schema.json \
charts/vald-benchmark-operator/values.yaml \
k8s \
versions/VALD_VERSION
git commit -S --signoff -m ":bookmark: :robot: Release ${RELEASE_TAG}"
Expand Down
1 change: 1 addition & 0 deletions Makefile.d/helm.mk
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ helm/schema/crd/all: \
helm/schema/crd/vald \
helm/schema/crd/vald-helm-operator \
helm/schema/crd/vald-benchmark-job \
helm/schema/crd/vald/mirror-target \
helm/schema/crd/vald-benchmark-scenario \
helm/schema/crd/vald-benchmark-operator

Expand Down
4 changes: 0 additions & 4 deletions charts/vald-benchmark-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,3 @@ A benchmark operator for benchmarking the Vald cluster.
| time_zone | string | `""` | time_zone |
| tolerations | list | `[]` | tolerations |
| version | string | `"v0.0.0"` | version of benchmark-operator config |

---

Autogenerated from chart metadata using [helm-docs v1.12.0](https://github.com/norwoodj/helm-docs/releases/v1.12.0)
4 changes: 0 additions & 4 deletions tests/chaos/chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,3 @@ A Helm chart for testing Vald using Chaos Mesh.
| podChaos.kill.schedule | string | `"*/2 * * * *"` | |
| podChaos.kill.selector.labelSelectors."app.kubernetes.io/name" | string | `"vald"` | |
| podChaos.kill.selector.namespaces[0] | string | `"default"` | |

---

Autogenerated from chart metadata using [helm-docs v1.12.0](https://github.com/norwoodj/helm-docs/releases/v1.12.0)
Loading