-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
42 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
kubeconfig | ||
.envrc |
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 @@ | ||
# k0s setup | ||
|
||
## Issues | ||
|
||
### k0sctl apply failed due to SSH host key mismatch | ||
|
||
Fix: disable ssh host key checking for Tailscale nodes | ||
|
||
``` | ||
Host 100.*.*.* | ||
StrictHostKeyChecking no | ||
``` | ||
|
||
### machine-id not unique | ||
|
||
Cause: cloning disk using proxmox | ||
Fix: https://unix.stackexchange.com/a/403054 |
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,23 @@ | ||
apiVersion: k0sctl.k0sproject.io/v1beta1 | ||
kind: Cluster | ||
metadata: | ||
name: labsV2 | ||
spec: | ||
hosts: | ||
- ssh: | ||
address: 100.85.154.134 | ||
user: pokgak | ||
port: 22 | ||
keyPath: ~/.ssh/id_ed25519 | ||
role: controller | ||
privateInterface: tailscale0 | ||
- ssh: | ||
address: 100.100.59.28 | ||
user: pokgak | ||
port: 22 | ||
keyPath: ~/.ssh/id_ed25519 | ||
role: worker | ||
privateInterface: tailscale0 | ||
k0s: | ||
version: 1.27.5+k0s.0 | ||
dynamicConfig: false |