forked from kubernetes-sigs/kustomize
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kubernetes-sigs#2172 from haiyanmeng/stats
Several improvements on crawler
- Loading branch information
Showing
14 changed files
with
361 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Creating `esbackup/kustomize-backbup` will create the `kustomize-backup` snapshot repository. | ||
# Deleting `esbackup/kustomize-backbup` will delete the `kustomize-backup` snapshot repository and all the snapshots in the repository. | ||
# Deleting `esbackup/kustomize-backbup` will NOT delete essnapshot and esrestore objects. | ||
apiVersion: elasticsearch.cloud.google.com/v1alpha1 | ||
kind: ESBackup | ||
metadata: | ||
name: kustomize-backup | ||
spec: | ||
storage: | ||
gcs: | ||
bucket: kustomize-backup | ||
path: kustomize | ||
secret: | ||
name: kustomizesa | ||
escluster: | ||
name: esbasic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Creating `esrestore/kustomize-restore` will restore the `kuostmize` index in the `kustomize-snapshot` snapshot to a new index named `kusotmize-restore`. | ||
# Deleting `esrestore/kustomize-restore` will not delete the restored index. | ||
# Deleting `esrestore/kustomize-restore` should happen before deleting `essnapshot/kustomize-snapshot`. | ||
apiVersion: elasticsearch.cloud.google.com/v1alpha1 | ||
kind: ESRestore | ||
metadata: | ||
name: kustomize-restore | ||
spec: | ||
include_global_state: true | ||
ignore_unavailable: true | ||
rename_pattern: kustomize | ||
rename_replacement: kustomize-restore | ||
essnapshot: | ||
name: kustomize-snapshot | ||
escluster: | ||
name: esbasic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Creating `essnapshot/kustomize-snapshot` will create a snapshot named `kustomize-snapshot` in the `kustomize-backup` snapshot repository. | ||
# Deleting `essnapshot/kustomize-snapshot` will delete the snapshot. | ||
# Deleting `essnapshot/kustomize-snapshot` should happen before deleting `esbackup/kustomize-backup`. | ||
apiVersion: elasticsearch.cloud.google.com/v1alpha1 | ||
kind: ESSnapshot | ||
metadata: | ||
name: kustomize-snapshot | ||
spec: | ||
# indices are optional. If not specified all indices are selected. | ||
indices: | ||
- kustomize | ||
include_global_state: true | ||
ignore_unavailable: true | ||
esbackup: | ||
name: kustomize-backup |
Oops, something went wrong.