-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from godatadriven/kg/configure-iptables-k3s
Change the way we configure DNS in k3s cluster
- Loading branch information
Showing
8 changed files
with
96 additions
and
75 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
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
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,43 @@ | ||
#!/bin/sh | ||
|
||
# entrypoint based on https://github.com/corneliusludmann/k3s-docker-compose-dns | ||
|
||
# Add IP tables rules to access Docker's internal DNS 127.0.0.11 from outside | ||
# based on https://serverfault.com/a/826424 | ||
|
||
TCP_DNS_ADDR=$(iptables-save | grep DOCKER_OUTPUT | grep tcp | grep -o '127\.0\.0\.11:.*$') | ||
UDP_DNS_ADDR=$(iptables-save | grep DOCKER_OUTPUT | grep udp | grep -o '127\.0\.0\.11:.*$') | ||
|
||
iptables -t nat -A PREROUTING -p tcp --dport 53 -j DNAT --to "$TCP_DNS_ADDR" | ||
iptables -t nat -A PREROUTING -p udp --dport 53 -j DNAT --to "$UDP_DNS_ADDR" | ||
|
||
|
||
# Add this IP to resolv.conf since CoreDNS of k3s uses this file | ||
|
||
TMP_FILE=$(mktemp) | ||
sed "/nameserver.*/ a nameserver $(hostname -i | cut -f1 -d' ')" /etc/resolv.conf > "$TMP_FILE" | ||
cp "$TMP_FILE" /etc/resolv.conf | ||
rm "$TMP_FILE" | ||
|
||
# Custom entrypoint does not run k3s as PID 1: see https://github.com/k3s-io/k3s/issues/5123 | ||
# In comment: https://github.com/k3s-io/k3s/issues/5123#issuecomment-1039674532 the script that fixes this | ||
# is mentioned: https://github.com/k3d-io/k3d/blob/main/pkg/types/fixes/assets/k3d-entrypoint-cgroupv2.sh | ||
# Copied that to this custom entrypoint script | ||
######################################################################################################################################### | ||
# DISCLAIMER # | ||
# Copied from https://github.com/moby/moby/blob/ed89041433a031cafc0a0f19cfe573c31688d377/hack/dind#L28-L37 # | ||
# Permission granted by Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp> (https://github.com/k3d-io/k3d/issues/493#issuecomment-827405962) # | ||
# Moby License Apache 2.0: https://github.com/moby/moby/blob/ed89041433a031cafc0a0f19cfe573c31688d377/LICENSE # | ||
######################################################################################################################################### | ||
if [ -f /sys/fs/cgroup/cgroup.controllers ]; then | ||
echo "[$(date -Iseconds)] [CgroupV2 Fix] Evacuating Root Cgroup ..." | ||
# move the processes from the root group to the /init group, | ||
# otherwise writing subtree_control fails with EBUSY. | ||
mkdir -p /sys/fs/cgroup/init | ||
busybox xargs -rn1 < /sys/fs/cgroup/cgroup.procs > /sys/fs/cgroup/init/cgroup.procs || : | ||
# enable controllers | ||
sed -e 's/ / +/g' -e 's/^/+/' <"/sys/fs/cgroup/cgroup.controllers" >"/sys/fs/cgroup/cgroup.subtree_control" | ||
echo "[$(date -Iseconds)] [CgroupV2 Fix] Done" | ||
fi | ||
|
||
/bin/k3s "$@" |
File renamed without changes.
48 changes: 48 additions & 0 deletions
48
envs/api-python-s3-k8s/whirl.setup.d/03_k8s_persistant_volume.sh
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,48 @@ | ||
#!/usr/bin/env bash | ||
|
||
echo "===========================" | ||
echo " Prepare persistent volume " | ||
echo "===========================" | ||
cat <<EOFPV | /opt/airflow/kubectl --kubeconfig=/opt/airflow/.kubeconfig/k3s.yaml create -f - | ||
apiVersion: v1 | ||
kind: PersistentVolume | ||
metadata: | ||
name: local-data | ||
labels: | ||
type: local | ||
spec: | ||
storageClassName: local-path | ||
capacity: | ||
storage: 1Gi | ||
local: | ||
path: /data/whirl | ||
persistentVolumeReclaimPolicy: Retain | ||
accessModes: | ||
- ReadWriteMany | ||
nodeAffinity: | ||
required: | ||
nodeSelectorTerms: | ||
- matchExpressions: | ||
- key: kubernetes.io/hostname | ||
operator: In | ||
values: | ||
- whirl-k3s-master | ||
EOFPV | ||
|
||
echo "================================" | ||
echo " Prepare persistent volumeclaim " | ||
echo "================================" | ||
cat <<EOFPVC | /opt/airflow/kubectl --kubeconfig=/opt/airflow/.kubeconfig/k3s.yaml create -f - | ||
apiVersion: v1 | ||
kind: PersistentVolumeClaim | ||
metadata: | ||
name: local-path-airflow-worker-pvc | ||
namespace: default | ||
spec: | ||
accessModes: | ||
- ReadWriteMany | ||
storageClassName: local-path | ||
resources: | ||
requests: | ||
storage: 1Gi | ||
EOFPVC |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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