-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: GCP integration GOS, GAR and GKE (#112)
This CL introduced GCP support with the following resources: - GKE clusters - Object storage buckets - Artifact registry repositories - Service Accounts - Networks Ticket: ENG-1610
- Loading branch information
1 parent
3909e5a
commit f47b37a
Showing
25 changed files
with
1,090 additions
and
856 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.20.2-bullseye as build | ||
FROM golang:1.21.6-bullseye as build | ||
|
||
ADD . /pleco | ||
WORKDIR /pleco | ||
|
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,66 @@ | ||
cloudProvider: "gcp" | ||
|
||
environmentVariables: | ||
LOG_LEVEL: "debug" | ||
|
||
enabledFeatures: | ||
disableDryRun: true | ||
checkInterval: 120 | ||
disableTTLCheck: false | ||
kubernetes: "in" | ||
s3: true | ||
|
||
gcpFeatures: | ||
gcpRegions: | ||
- asia-east1, | ||
- asia-east2, | ||
- asia-northeast1, | ||
- asia-northeast2, | ||
- asia-northeast3, | ||
- asia-south1, | ||
- asia-south2, | ||
- asia-southeast1, | ||
- asia-southeast2, | ||
- australia-southeast1, | ||
- australia-southeast2, | ||
- europe-central2, | ||
- europe-north1, | ||
- europe-southwest1, | ||
- europe-west1, | ||
- europe-west10, | ||
- europe-west12, | ||
- europe-west2, | ||
- europe-west3, | ||
- europe-west4, | ||
- europe-west6, | ||
- europe-west8, | ||
- europe-west9, | ||
- me-central1, | ||
- me-central2, | ||
- me-west1, | ||
- northamerica-northeast1, | ||
- northamerica-northeast2, | ||
- southamerica-east1, | ||
- southamerica-west1, | ||
- us-central1, | ||
- us-east1, | ||
- us-east4, | ||
- us-east5, | ||
- us-south1, | ||
- us-west1, | ||
- us-west2, | ||
- us-west3, | ||
- us-west4 | ||
cluster: true | ||
network: true | ||
iam: true | ||
artifactRegistry: true | ||
objectStorage: true | ||
|
||
resources: | ||
limits: | ||
cpu: 250m | ||
memory: 512Mi | ||
requests: | ||
cpu: 250m | ||
memory: 512Mi |
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
Oops, something went wrong.