Replies: 3 comments 3 replies
-
What do the logs from the .1.100 node say? |
Beta Was this translation helpful? Give feedback.
-
Please take a look at Troubleshooting documentation. |
Beta Was this translation helpful? Give feedback.
-
One error in
Error which I fail to identify the root cause of. @smira if you have any insights. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
After installing Talos on a fresh new node and bootstrapping the cluster on that node I get :
Any idea where that could be coming from ?
Extra info
controlplane.yaml (also [here](https://gist.github.com/TheSirC/5689f90a11fe54dd06a2f9f1dd23d691))
```yamlversion: v1alpha1 # Indicates the schema used to decode the contents.
debug: false # Enable verbose logging to the console.
persist: true
Provides machine specific configuration options.
machine:
type: controlplane # Defines the role of the machine within the cluster.
token: # The
token
is used by a machine to join the PKI of the cluster.# The root certificate authority of the PKI.
ca:
crt: ==
key:
# Extra certificate subject alternative names for the machine's certificate.
certSANs: []
# # Uncomment this to enable SANs.
# - 10.0.0.10
# - 172.16.0.10
# - 192.168.0.10
Provides cluster specific configuration options.
cluster:
id: sXPvJaxULrGVNF_wTs0K_PyeBFhIj0fQ0DhnizJsDAE= # Globally unique identifier for this cluster (base64 encoded random 32 bytes).
secret: # Shared secret of cluster (base64 encoded random 32 bytes).
# Provides control plane specific configuration options.
controlPlane:
endpoint: https://192.168.1.100:6443 # Endpoint is the canonical controlplane endpoint, which can be an IP address or a DNS hostname.
clusterName: lernaca # Configures the cluster's name.
# Provides cluster specific network configuration options.
network:
dnsDomain: cluster.local # The domain used by Kubernetes DNS.
# The pod subnet CIDR.
podSubnets:
- 10.244.0.0/16
# The service subnet CIDR.
serviceSubnets:
- 10.96.0.0/12
Beta Was this translation helpful? Give feedback.
All reactions