Skip to content

Commit ffbd911

Browse files
authored
Signed-off-by: 1gtm <1gtm@appscode.com>
1 parent 2a66966 commit ffbd911

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -404,12 +404,12 @@ $(BUILD_DIRS):
404404
dev: gen fmt
405405

406406
.PHONY: verify
407-
verify: verify-gen verify-modules
407+
verify: verify-modules
408408

409409
.PHONY: verify-modules
410-
verify-modules:
411-
go mod tidy
412-
go mod vendor
410+
verify-modules: gen fmt
411+
GO111MODULE=on go mod tidy
412+
GO111MODULE=on go mod vendor
413413
@if !(git diff --exit-code HEAD); then \
414414
echo "go module files are out of date"; exit 1; \
415415
fi

charts/stash-crds/crds/stash.appscode.com_backupconfigurations.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2505,6 +2505,10 @@ spec:
25052505
take backup
25062506
properties:
25072507
name:
2508+
description: Name specifies the name of the Task to use for backup/restore
2509+
purpose. If your database has been deployed with KubeDB, then
2510+
keep this field empty. Stash will read the Task info from the
2511+
respective AppBinding.
25082512
type: string
25092513
params:
25102514
description: Params specifies a list of parameter to pass to the
@@ -2522,8 +2526,6 @@ spec:
25222526
- value
25232527
type: object
25242528
type: array
2525-
required:
2526-
- name
25272529
type: object
25282530
tempDir:
25292531
description: Temp directory configuration for functions/sidecar An

charts/stash-crds/crds/stash.appscode.com_restoresessions.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2856,6 +2856,10 @@ spec:
28562856
recovery process
28572857
properties:
28582858
name:
2859+
description: Name specifies the name of the Task to use for backup/restore
2860+
purpose. If your database has been deployed with KubeDB, then
2861+
keep this field empty. Stash will read the Task info from the
2862+
respective AppBinding.
28592863
type: string
28602864
params:
28612865
description: Params specifies a list of parameter to pass to the
@@ -2873,8 +2877,6 @@ spec:
28732877
- value
28742878
type: object
28752879
type: array
2876-
required:
2877-
- name
28782880
type: object
28792881
tempDir:
28802882
description: Temp directory configuration for functions/sidecar An

0 commit comments

Comments
 (0)