-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Labels
L2 FewLikelihoodLikelihoodP2 AggravatingPriority levelPriority levelT0 New featureIssue typeIssue typefrFeature requestFeature requestkubernetes
Description
What are you trying to do?
I mentioned this to @maisem at Tailescale up, who mentioned that this might be of interest to @danderson
Trying to run the Tailscale k8s operator in a managed Oracle Kubernetes (OKE) cluster. My colleague @cwiggs at QuickNode found that it was necessary to modify the tailscale image with this:
FROM --platform=linux/amd64 tailscale/tailscale:unstable
RUN apk update && apk add nftables
RUN rm -f /sbin/iptables && \
ln -s /sbin/xtables-nft-multi /sbin/iptables && \
rm -f /sbin/ip6tables && \
ln -s /sbin/xtables-nft-multi /sbin/ip6tables
Without this, none of the Tailscale networking running in OKE worked.
How should we solve this?
Add nft support, maybe to the tailscale image, like how we did.
What is the impact of not solving this?
Running the tailscale operator inside an Oracle Kubernetes cluster will not work, due to lack of nft support
Anything else?
No response
Metadata
Metadata
Assignees
Labels
L2 FewLikelihoodLikelihoodP2 AggravatingPriority levelPriority levelT0 New featureIssue typeIssue typefrFeature requestFeature requestkubernetes