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

charts: update lvmvolumegroups fields and version bump #294

Merged
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
4 changes: 2 additions & 2 deletions charts/harvester-node-disk-manager/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.7.3
version: 0.7.4

# 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: "v0.7.2"
appVersion: "v0.7.3"

maintainers:
- name: harvester
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ spec:
type: object
spec:
properties:
desireState:
desiredState:
description: |-
DesiredState is the desired state of the volume group
enabled means we will keep this vg active, disabled means we will keep this vg inactive
Expand All @@ -64,6 +64,7 @@ spec:
description: |-
The devices of the volume group
format: map[<bd Name>]=devPath"
e.g. map[087fc9702c450bfca5ba56b06ba7d7f2] = /dev/sda
type: object
nodeName:
description: NodeName is the name of the node where the volume group
Expand All @@ -77,7 +78,7 @@ spec:
description: VGName is the name of the volume group
type: string
required:
- desireState
- desiredState
- nodeName
- vgName
type: object
Expand Down Expand Up @@ -122,6 +123,10 @@ spec:
- Inactive
- Unknown
type: string
vgTargetType:
description: VGTargetType is the target type of the volume group,
now only support stripe/dm-thin
type: string
type: object
required:
- metadata
Expand Down
2 changes: 1 addition & 1 deletion charts/harvester-node-disk-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ image:
repository: rancher/harvester-node-disk-manager
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
tag: "v0.7.3"

imagePullSecrets: []
nameOverride: ""
Expand Down
Loading