-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/feature/upgrade-postgresql-13'…
… into feature/upgrade-pgbouncer
- Loading branch information
Showing
79 changed files
with
2,798 additions
and
170 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
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
11 changes: 10 additions & 1 deletion
11
core/src/epicli/data/any/validation/infrastructure/machine.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 |
---|---|---|
@@ -1 +1,10 @@ | ||
$ref: '#/definitions/unvalidated_specification' | ||
"$id": "#/specification" | ||
title: "Machine specification schema" | ||
description: "Machine specification schema" | ||
specification: | ||
type: object | ||
properties: | ||
hostname: | ||
type: string | ||
ip: | ||
type: string |
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
29 changes: 28 additions & 1 deletion
29
core/src/epicli/data/aws/validation/infrastructure/default-security-group.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 |
---|---|---|
@@ -1 +1,28 @@ | ||
$ref: '#/definitions/unvalidated_specification' | ||
"$id": "#/specification" | ||
title: "Default-security-group specification schema" | ||
description: "Default-security-group specification schema" | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
vpc_name: | ||
type: string | ||
rules: | ||
type: array | ||
items: | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
description: | ||
type: string | ||
direction: | ||
type: string | ||
protocol: | ||
type: string | ||
destination_port_range: | ||
type: string | ||
source_address_prefix: | ||
type: string | ||
destination_address_prefix: | ||
type: string |
30 changes: 29 additions & 1 deletion
30
core/src/epicli/data/aws/validation/infrastructure/efs-storage.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 |
---|---|---|
@@ -1 +1,29 @@ | ||
$ref: '#/definitions/unvalidated_specification' | ||
"$id": "#/specification" | ||
title: "Efs-storage specification schema" | ||
description: "Efs-storage specification schema" | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
token: | ||
type: string | ||
encrypted: | ||
type: boolean | ||
performance_mode: | ||
type: string | ||
throughput_mode: | ||
type: string | ||
mount_targets: | ||
type: array | ||
items: | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
subnet_name: | ||
type: string | ||
security: | ||
type: object | ||
properties: | ||
populate_sg_rules: | ||
type: boolean |
16 changes: 15 additions & 1 deletion
16
core/src/epicli/data/aws/validation/infrastructure/internet-gateway.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 |
---|---|---|
@@ -1 +1,15 @@ | ||
$ref: '#/definitions/unvalidated_specification' | ||
"$id": "#/specification" | ||
title: "Internet-gateway specification schema" | ||
description: "Internet-gateway specification schema" | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
vpc_name: | ||
type: string | ||
cluster_name: | ||
type: string | ||
tag: | ||
type: array | ||
items: | ||
type: string |
53 changes: 52 additions & 1 deletion
53
core/src/epicli/data/aws/validation/infrastructure/launch-configuration.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 |
---|---|---|
@@ -1 +1,52 @@ | ||
$ref: '#/definitions/unvalidated_specification' | ||
"$id": "#/specification" | ||
title: "Launch-configuration specification schema" | ||
description: "Launch-configuration specification schema" | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
image_id: | ||
type: string | ||
size: | ||
type: string | ||
key_name: | ||
type: string | ||
disks: | ||
type: object | ||
properties: | ||
root: | ||
type: object | ||
properties: | ||
volume_type: | ||
type: string | ||
volume_size: | ||
type: integer | ||
delete_on_termination: | ||
type: boolean | ||
encrypted: | ||
type: boolean | ||
additional_disks: | ||
type: array | ||
items: | ||
type: object | ||
properties: | ||
device_name: | ||
type: string | ||
volume_type: | ||
type: string | ||
volume_size: | ||
type: integer | ||
delete_on_termination: | ||
type: boolean | ||
encrypted: | ||
type: boolean | ||
ebs_optimized: | ||
type: boolean | ||
associate_public_ip: | ||
type: boolean | ||
security_groups: | ||
type: array | ||
items: | ||
- type: string | ||
enable_monitoring: | ||
type: boolean |
10 changes: 9 additions & 1 deletion
10
core/src/epicli/data/aws/validation/infrastructure/public-key.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 |
---|---|---|
@@ -1 +1,9 @@ | ||
$ref: '#/definitions/unvalidated_specification' | ||
"$id": "#/specification" | ||
title: "Public-key specification schema" | ||
description: "Public-key specification schema" | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
public_key: | ||
type: string |
10 changes: 9 additions & 1 deletion
10
core/src/epicli/data/aws/validation/infrastructure/resource-group.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 |
---|---|---|
@@ -1 +1,9 @@ | ||
$ref: '#/definitions/unvalidated_specification' | ||
"$id": "#/specification" | ||
title: "Resource-group specification schema" | ||
description: "Resource-group specification schema" | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
cluster_name: | ||
type: string |
12 changes: 11 additions & 1 deletion
12
core/src/epicli/data/aws/validation/infrastructure/route-table-association.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 |
---|---|---|
@@ -1 +1,11 @@ | ||
$ref: '#/definitions/unvalidated_specification' | ||
"$id": "#/specification" | ||
title: "Route-table-association specification schema" | ||
description: "Route-table-association specification schema" | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
subnet_name: | ||
type: string | ||
route_table_name: | ||
type: string |
23 changes: 22 additions & 1 deletion
23
core/src/epicli/data/aws/validation/infrastructure/route-table.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 |
---|---|---|
@@ -1 +1,22 @@ | ||
$ref: '#/definitions/unvalidated_specification' | ||
"$id": "#/specification" | ||
title: "Route-table specification schema" | ||
description: "Route-table specification schema" | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
vpc_name: | ||
type: string | ||
route: | ||
type: object | ||
properties: | ||
cidr_block: | ||
type: string | ||
gateway_name: | ||
type: string | ||
tag: | ||
type: array | ||
items: | ||
type: string | ||
cluster_name: | ||
type: string |
20 changes: 19 additions & 1 deletion
20
core/src/epicli/data/aws/validation/infrastructure/security-group-rule.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 |
---|---|---|
@@ -1 +1,19 @@ | ||
$ref: '#/definitions/unvalidated_specification' | ||
"$id": "#/specification" | ||
title: "Security-group-rule specification schema" | ||
description: "Security-group-rule specification schema" | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
protocol: | ||
type: string | ||
description: | ||
type: string | ||
direction: | ||
type: string | ||
destination_port_range: | ||
type: string | ||
source_address_prefix: | ||
type: string | ||
destination_address_prefix: | ||
type: string |
33 changes: 32 additions & 1 deletion
33
core/src/epicli/data/aws/validation/infrastructure/security-group.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 |
---|---|---|
@@ -1 +1,32 @@ | ||
$ref: '#/definitions/unvalidated_specification' | ||
"$id": "#/specification" | ||
title: "Security-group specification schema" | ||
description: "Security-group specification schema" | ||
type: object | ||
properties: | ||
vpc_name: | ||
type: string | ||
name: | ||
type: string | ||
cidr_block: | ||
type: string | ||
rules: | ||
type: array | ||
items: | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
description: | ||
type: string | ||
direction: | ||
type: string | ||
protocol: | ||
type: string | ||
destination_port_range: | ||
type: string | ||
source_address_prefix: | ||
type: string | ||
destination_address_prefix: | ||
type: string | ||
cluster_name: | ||
type: string |
Oops, something went wrong.