Skip to content

Commit

Permalink
Changing the region the DigitalOcean tests run in due to 422: insuffi…
Browse files Browse the repository at this point in the history
…cient capacity issues
  • Loading branch information
stack72 committed Feb 5, 2021
1 parent 2641d91 commit fbfbba4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion digitalocean-cs-k8s/KubernetesStack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public KubernetesStack()

var cluster = new KubernetesCluster("do-cluser", new KubernetesClusterArgs
{
Region = "sfo2",
Region = "nyc3",
Version = "latest",
NodePool = new KubernetesClusterNodePoolArgs
{
Expand Down
2 changes: 1 addition & 1 deletion digitalocean-py-k8s/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

cluster = do.KubernetesCluster(
"do-cluster",
region="sfo2",
region="nyc3",
version="latest",
node_pool=do.KubernetesClusterNodePoolArgs(
name="default",
Expand Down
2 changes: 1 addition & 1 deletion digitalocean-ts-k8s/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const domainName = config.get("domainName");
// Provision a DigitalOcean Kubernetes cluster and export its resulting
// kubeconfig to make it easy to access from the kubectl command line.
const cluster = new digitalocean.KubernetesCluster("do-cluster", {
region: digitalocean.Regions.SFO2,
region: digitalocean.Regions.NYC3,
version: digitalocean.getKubernetesVersions().then(p => p.latestVersion),
nodePool: {
name: "default",
Expand Down

0 comments on commit fbfbba4

Please sign in to comment.