This commit is contained in:
jonas 2021-11-18 13:59:40 +01:00
parent 03cb1839d9
commit f8913781ac
4 changed files with 21 additions and 3 deletions

View File

@ -16,6 +16,17 @@ mount -o remount,rw $(blkid -L COS_STATE) /run/initramfs/cos-state
vim /run/initramfs/cos-state/grub2/grub.cfg
```
## Rancher server is logging error syncing nodename
The rancher server is logging the following for every node, repeatedly
```
2021/11/10 08:40:57 [ERROR] error syncing 'node2': handler machine-worker-label: machines.cluster.x-k8s.io "custom-9cebcaf1ae85" not found, requeuing
```
tag all nodes in the harvester cluster as worker nodes
```
kubectl label node node1 node-role.kubernetes.io/worker=true
```
# podman
Proplem:
```

View File

@ -2,3 +2,4 @@ packages:
- vim
- jq
- htop
- terminator

View File

@ -52,6 +52,8 @@ Configure firewalld for internal network:
- dns
- ntp
- registry
- nfs
- nfs3
Configure firewalld for public networks:
firewalld.present:

View File

@ -9,9 +9,10 @@ server {
ssl_certificate /etc/rancher/ssl/rancher-server.crt;
ssl_certificate_key /etc/rancher/ssl/rancher-server.key;
location /{
proxy_pass https://localhost:9443;
proxy_ssl_trusted_certificate /etc/rancher/ssl/rancher-server.crt;
proxy_pass https://172.18.0.1:9080;
proxy_http_version 1.1;
proxy_read_timeout 3600;
proxy_set_header X-API-request-url $scheme://$host:$server_port$request_uri;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Host $host;
@ -19,7 +20,10 @@ server {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port $server_port;
proxy_set_header X-Forwarded-Host $host:$server_port;
proxy_set_header Referer $host:$server_port;
proxy_buffering off;
proxy_redirect off;
}
}