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: chart.yaml indentation #586

Merged
merged 1 commit into from
Sep 16, 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
20 changes: 10 additions & 10 deletions deploy/helm/charts/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ appVersion: 2.6.1-prerelease
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/openebs/icon/color/openebs-icon-color.png
home: https://openebs.io/
keywords:
- cloud-native-storage
- block-storage
- filesystem
- ZFS
- Local Persistent Volumes
- storage
- cloud-native-storage
- block-storage
- filesystem
- ZFS
- Local Persistent Volumes
- storage
sources:
- https://github.com/openebs/zfs-localpv
- https://github.com/openebs/zfs-localpv
dependencies:
- name: crds
version: 2.6.1-prerelease
condition: crds.enabled
- name: crds
version: 2.6.1-prerelease
condition: crds.enabled
2 changes: 1 addition & 1 deletion scripts/update-chart-version.sh
Abhinandan-Purkait marked this conversation as resolved.
Show resolved Hide resolved
Abhinandan-Purkait marked this conversation as resolved.
Show resolved Hide resolved
Abhinandan-Purkait marked this conversation as resolved.
Show resolved Hide resolved
Abhinandan-Purkait marked this conversation as resolved.
Show resolved Hide resolved
Abhinandan-Purkait marked this conversation as resolved.
Show resolved Hide resolved
Abhinandan-Purkait marked this conversation as resolved.
Show resolved Hide resolved
Abhinandan-Purkait marked this conversation as resolved.
Show resolved Hide resolved
Abhinandan-Purkait marked this conversation as resolved.
Show resolved Hide resolved
Abhinandan-Purkait marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ update_chart_yaml() {

yq_ibl ".version = \"$VERSION\" | .appVersion = \"$APP_VERSION\"" "$CHART_YAML"
yq_ibl ".version = \"$VERSION\"" "$CRD_CHART_YAML"
yq_ibl "(.dependencies[] | select(.name == \"crds\") | .version) = \"$VERSION\"" "$CHART_YAML"
yq_ibl "(.dependencies[] | select(.name == \"crds\").version) |= \"$VERSION\"" "$CHART_YAML"
yq_ibl ".zfsPlugin.image.tag = \"$VERSION\"" "$VALUES_YAML"
}

Expand Down
Loading