- Refactor dnsmasq configuration and scripts for improved variable handling and clarity - Updated dnsmasq configuration files to use direct variable references instead of data source functions for better readability. - Modified setup scripts to ensure they are run from the correct environment and directory, checking for the WC_HOME variable. - Changed paths in README and scripts to reflect the new directory structure. - Enhanced error handling in setup scripts to provide clearer guidance on required configurations. - Adjusted kernel and initramfs URLs in boot.ipxe to use the updated variable references.
29 lines
729 B
YAML
29 lines
729 B
YAML
---
|
|
# Traefik service configuration with static LoadBalancer IP
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: traefik
|
|
namespace: kube-system
|
|
annotations:
|
|
# Get a stable IP from MetalLB
|
|
metallb.universe.tf/address-pool: production
|
|
metallb.universe.tf/allow-shared-ip: traefik-lb
|
|
labels:
|
|
app.kubernetes.io/instance: traefik-kube-system
|
|
app.kubernetes.io/name: traefik
|
|
spec:
|
|
type: LoadBalancer
|
|
loadBalancerIP: { { .cluster.loadBalancerIP } }
|
|
selector:
|
|
app.kubernetes.io/instance: traefik-kube-system
|
|
app.kubernetes.io/name: traefik
|
|
ports:
|
|
- name: web
|
|
port: 80
|
|
targetPort: web
|
|
- name: websecure
|
|
port: 443
|
|
targetPort: websecure
|
|
externalTrafficPolicy: Local
|