-
Notifications
You must be signed in to change notification settings - Fork 155
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
feat: Add Various Ops Files referenced in v7.12.0 Release (#259) #260
Draft
kcbimonte
wants to merge
7
commits into
concourse:master
Choose a base branch
from
kcbimonte:release_v7.12.0_ops
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
d5cdc81
other: Update gitignore (#259)
af2c5e0
feat: Add skeleton for new ops files (#259)
0765290
feat: Add Vault Client Token Path Ops File (#259)
568f799
feat: Add IPv6 Worker Networking content (#259)
242a75a
feat: Add Resource Type Checking Interval content (#259)
5514740
feat: Add base AWS SSM Ops File along with additional properties (#259)
998bcac
feat: Add postgres-binary-parameters.yml (#259)
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
*state.json | ||
deploy-*.sh | ||
.DS_Store | ||
/.idea/ |
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,13 @@ | ||
# | ||
# This operations file will use remove the AWS SSM | ||
# Access and Secret Access Key to instead use the instance | ||
# profile of the web node. | ||
# | ||
# Requires the aws-ssm-manager.yml ops file | ||
|
||
--- | ||
- type: remove | ||
path: /instance_groups/name=web/jobs/name=web/properties/aws_ssm/access_key | ||
|
||
- type: remove | ||
path: /instance_groups/name=web/jobs/name=web/properties/aws_ssm/secret_key |
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,17 @@ | ||
# | ||
# This operations file will add AWS SSM Secrets Manager Support to | ||
# the web node | ||
|
||
--- | ||
- type: replace | ||
path: /instance_groups/name=web/jobs/name=web/properties/aws_ssm? | ||
value: | ||
access_key: ((aws_ssm.access_key)) | ||
secret_key: ((aws_ssm.secret_key)) | ||
region: ((aws_ssm.region)) | ||
|
||
pipeline_secret_template: ((aws_ssm.pipeline_secret_template)) | ||
# default value is /concourse/{{.Team}}/{{.Pipeline}}/{{.Secret}} | ||
|
||
team_secret_template: ((aws_ssm.team_secret_template)) | ||
# default value is /concourse/{{.Team}}/{{.Secret}} |
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 @@ | ||
# | ||
# This operations file will use a Session Token instead of | ||
# a pair of Access and Secret Access Keys | ||
# | ||
# Requires the aws-ssm-manager.yml ops file | ||
|
||
--- | ||
- type: remove | ||
path: /instance_groups/name=web/jobs/name=web/properties/aws_ssm/access_key | ||
|
||
- type: remove | ||
path: /instance_groups/name=web/jobs/name=web/properties/aws_ssm/secret_key | ||
|
||
- type: replace | ||
path: /instance_groups/name=web/jobs/name=web/properties/aws_ssm/session_token | ||
value: ((aws_ssm_session_token)) |
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,10 @@ | ||
# | ||
# This operations file will add a shared path route | ||
# in order to define secrets accessible by all teams. | ||
# | ||
# Requires the aws-ssm-manager.yml ops file | ||
|
||
--- | ||
- type: replace | ||
path: /instance_groups/name=web/jobs/name=web/properties/aws_ssm/shared_path? | ||
value: ((aws_ssm_shared_path)) |
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,13 @@ | ||
# | ||
# This operations file will configure workers to communicate over | ||
# the IPv6 Protocol in addition to existing IPv4 | ||
# | ||
# Requires the runtime-containerd.yml ops file | ||
|
||
--- | ||
- type: replace | ||
path: /instance_groups/name=worker/containerd/ipv6? | ||
value: | ||
enabled: ((ipv6.enabled)) | ||
pool: ((ipv6.pool)) | ||
disable_masquerade: ((ipv6.disable_masquerade)) |
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,8 @@ | ||
# | ||
# This operations file will allow the option for the | ||
# PostgreSQL Driver to use Binary Parameters for Prepared Statements. | ||
|
||
--- | ||
- type: replace | ||
path: /instance_groups/name=web/jobs/name=web/properties/postgresql?/binary_parameters? | ||
value: ((postgres_binary)) |
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,9 @@ | ||
# | ||
# This operations file will override the default Resource Type | ||
# Check Interval on the web node | ||
# | ||
|
||
--- | ||
- type: replace | ||
path: /instance_groups/name=web/default_resource_type_check_interval | ||
value: ((resource_check_interval)) |
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 @@ | ||
# | ||
# This operations file will configure web to accept the Vault Client | ||
# Token from a file | ||
# | ||
# Requires the vault.yml ops file | ||
# | ||
|
||
--- | ||
- type: remove | ||
path: /instance_groups/name=web/jobs/name=web/properties/vault/auth/client_token | ||
|
||
- type: replace | ||
path: /instance_groups/name=web/jobs/name=web/properties/vault/auth? | ||
value: | ||
client_token_path: ((vault.client_token_path)) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing vm_extensions block to add the instance profile hook in to the web node