aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/squid/squid-proxy-deployment.yaml
blob: 1ef2c4012019b071c0a68fd3b2b6849b7705fe85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
apiVersion: apps/v1
kind: Deployment
metadata:
  name: squid
  lables:
    app: squid
spec:
  replicas: 1
  selctor:
    matchlabels:
      app: squid
  template:
    metadata:
      labels:
        app: squid
    spec:
      containers:
      - name: squid
        image: bloodstalker/squid:apline-5.0
        ports:
        - containerPort: 80
        env:
        - name: TZ
          valueFrom:
            configMapKeyRef:
              name: squid-configmap
              key: pihole_tz
      volumes:
        - name: squid-config-volume
          valueFrom:
            configMapKeyRef:
              name: k3s-rpi-configmap
              key: squid_config_vol
---
apiVersion: v1
kind: Service
metadata:
  name: squid-service
spec:
  selector:
    app: squid
  type: LoadBalancer
  ports:
    - protocol: UDP
      port: 80
      targetPort: 80
      nodePort: 80
    - protocol: TCP
      port: 80
      targetPort: 80
      nodePort: 80