-
Notifications
You must be signed in to change notification settings - Fork 1k
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 #18246 from jmchilton/backport_user_data_1
[24.1] Small bug fixes for user data plugins
- Loading branch information
Showing
7 changed files
with
192 additions
and
25 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
34 changes: 34 additions & 0 deletions
34
lib/galaxy/files/templates/examples/testing_multi_version_with_secrets.yml
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,34 @@ | ||
# a template with multiple versions that could be coherent for unit/integration | ||
# testing upgrading object stores templates | ||
- id: secure_disk | ||
version: 0 | ||
name: Secure Disk | ||
description: Secure Disk Bound to You | ||
secrets: | ||
sec1: | ||
help: This is my test secret. | ||
configuration: | ||
type: posix | ||
root: '/data/secure/{{ user.username }}/{{ secrets.sec1 }}/aftersec' | ||
- id: secure_disk | ||
version: 1 | ||
name: Secure Disk | ||
description: Secure Disk Bound to You | ||
secrets: | ||
sec1: | ||
help: This is my test secret. | ||
sec2: | ||
help: This is my test secret 2. | ||
configuration: | ||
type: posix | ||
root: '/data/secure/{{ user.username }}/{{ secrets.sec1 }}/{{ secrets.sec2 }}' | ||
- id: secure_disk | ||
version: 2 | ||
name: Secure Disk | ||
description: Secure Disk Bound to You | ||
secrets: | ||
sec2: | ||
help: This is my test secret 2. | ||
configuration: | ||
type: posix | ||
root: '/data/secure/{{ user.username }}/newbar/{{ secrets.sec2 }}' |
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