Skip to content

Commit

Permalink
Fixing a typo and removing my old kubeconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
danmanners committed Dec 2, 2023
1 parent 28f05a7 commit a944e6b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions iac/cloud/pulumi/vars/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ export const security_groups = {
egress: [
{
description: "Talos - talosctl",
port: 50000,
protocol: "tcp",
port: -1,
protocol: "all",
cidr_blocks: ["0.0.0.0/0"],
},
],
Expand Down
6 changes: 3 additions & 3 deletions iac/cloud/talos/talconfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ nodes:
- 172.29.8.5/21
routes:
- network: 0.0.0.0/0
gateway: 10.4.0.1
gateway: 172.29.8.1
vip:
ip: 172.29.8.10
- hostname: kube-worker-1.cloud.danmanners.com
Expand All @@ -47,7 +47,7 @@ nodes:
- 172.29.8.100/21
routes:
- network: 0.0.0.0/0
gateway: 10.4.0.1
gateway: 172.29.8.1
- hostname: kube-worker-2.cloud.danmanners.com
disableSearchDomain: true
ipAddress: 172.29.8.101
Expand All @@ -63,7 +63,7 @@ nodes:
- 172.29.8.101/21
routes:
- network: 0.0.0.0/0
gateway: 10.4.0.1
gateway: 172.29.8.1

controlPlane:
schematic: {}
Expand Down
2 changes: 1 addition & 1 deletion iac/cloud/talos_bootstrapping/bootstrapping.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ sops -d -i talsecret.sops.yaml
talhelper genconfig

# Check if the cluster has already been deployed
if $(talosctl --talosconfig clusterconfig/talosconfig kubeconfig /tmp/kubeconfig); then
if $(talosctl --talosconfig clusterconfig/talosconfig -n 172.29.8.5 kubeconfig /tmp/kubeconfig); then
DEPLOYED="True"
else
DEPLOYED="False"
Expand Down

0 comments on commit a944e6b

Please sign in to comment.