initial commit
All checks were successful
Build and Publish TechDocs / build-and-publish (push) Successful in 1m15s
All checks were successful
Build and Publish TechDocs / build-and-publish (push) Successful in 1m15s
Change-Id: I2e2564a72b6be9af536235fc3795fd788fd9257b
This commit is contained in:
2
haproxy/ci/daemonset-basic-values.yaml
Normal file
2
haproxy/ci/daemonset-basic-values.yaml
Normal file
@@ -0,0 +1,2 @@
|
||||
kind: DaemonSet
|
||||
replicaCount: 2
|
||||
13
haproxy/ci/daemonset-hostnet-values.yaml
Normal file
13
haproxy/ci/daemonset-hostnet-values.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
kind: DaemonSet
|
||||
containerPorts:
|
||||
http: 8080
|
||||
https: 8443
|
||||
stat: 8024
|
||||
daemonset:
|
||||
useHostNetwork: true
|
||||
useHostPort: true
|
||||
hostPorts:
|
||||
http: 8080
|
||||
https: 8443
|
||||
stat: 8024
|
||||
dnsPolicy: ClusterFirstWithHostNet
|
||||
3
haproxy/ci/daemonset-ingress-values.yaml
Normal file
3
haproxy/ci/daemonset-ingress-values.yaml
Normal file
@@ -0,0 +1,3 @@
|
||||
kind: DaemonSet
|
||||
ingress:
|
||||
enabled: true
|
||||
4
haproxy/ci/daemonset-ipfamily-values.yaml
Normal file
4
haproxy/ci/daemonset-ipfamily-values.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
kind: DaemonSet
|
||||
service:
|
||||
ipFamilies: [IPv4]
|
||||
ipFamilyPolicy: SingleStack
|
||||
26
haproxy/ci/daemonset-probes-values.yaml
Normal file
26
haproxy/ci/daemonset-probes-values.yaml
Normal file
@@ -0,0 +1,26 @@
|
||||
kind: DaemonSet
|
||||
replicaCount: 2
|
||||
livenessProbe:
|
||||
failureThreshold: 3
|
||||
successThreshold: 1
|
||||
initialDelaySeconds: 0
|
||||
timeoutSeconds: 1
|
||||
tcpSocket:
|
||||
port: 80
|
||||
periodSeconds: 10
|
||||
readinessProbe:
|
||||
failureThreshold: 3
|
||||
successThreshold: 1
|
||||
initialDelaySeconds: 0
|
||||
timeoutSeconds: 1
|
||||
tcpSocket:
|
||||
port: 80
|
||||
periodSeconds: 10
|
||||
startupProbe:
|
||||
failureThreshold: 20
|
||||
successThreshold: 1
|
||||
initialDelaySeconds: 0
|
||||
timeoutSeconds: 1
|
||||
tcpSocket:
|
||||
port: 80
|
||||
periodSeconds: 1
|
||||
1
haproxy/ci/deployment-basic-values.yaml
Normal file
1
haproxy/ci/deployment-basic-values.yaml
Normal file
@@ -0,0 +1 @@
|
||||
kind: Deployment
|
||||
18
haproxy/ci/deployment-config-values.yaml
Normal file
18
haproxy/ci/deployment-config-values.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
config: |
|
||||
global
|
||||
log stdout format raw local0
|
||||
daemon
|
||||
maxconn 1024
|
||||
|
||||
defaults
|
||||
log global
|
||||
timeout client 60s
|
||||
timeout connect 60s
|
||||
timeout server 60s
|
||||
|
||||
frontend fe_main
|
||||
bind :80
|
||||
default_backend be_main
|
||||
|
||||
backend be_main
|
||||
server web1 10.0.0.1:8080 check
|
||||
19
haproxy/ci/deployment-hpa-values.yaml
Normal file
19
haproxy/ci/deployment-hpa-values.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
kind: Deployment
|
||||
replicaCount: null
|
||||
autoscaling:
|
||||
enabled: true
|
||||
minReplicas: 1
|
||||
maxReplicas: 5
|
||||
targetCPUUtilizationPercentage: 80
|
||||
behavior:
|
||||
scaleUp:
|
||||
policies:
|
||||
- type: Percent
|
||||
value: 900
|
||||
periodSeconds: 60
|
||||
scaleDown:
|
||||
stabilizationWindowSeconds: 600
|
||||
policies:
|
||||
- type: Pods
|
||||
value: 1
|
||||
periodSeconds: 600
|
||||
3
haproxy/ci/deployment-ingress-values.yaml
Normal file
3
haproxy/ci/deployment-ingress-values.yaml
Normal file
@@ -0,0 +1,3 @@
|
||||
kind: Deployment
|
||||
ingress:
|
||||
enabled: true
|
||||
4
haproxy/ci/deployment-ipfamily-values.yaml
Normal file
4
haproxy/ci/deployment-ipfamily-values.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
kind: Deployment
|
||||
service:
|
||||
ipFamilies: [IPv4]
|
||||
ipFamilyPolicy: SingleStack
|
||||
25
haproxy/ci/deployment-probes-values.yaml
Normal file
25
haproxy/ci/deployment-probes-values.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
kind: Deployment
|
||||
livenessProbe:
|
||||
failureThreshold: 3
|
||||
successThreshold: 1
|
||||
initialDelaySeconds: 0
|
||||
timeoutSeconds: 1
|
||||
tcpSocket:
|
||||
port: 80
|
||||
periodSeconds: 10
|
||||
readinessProbe:
|
||||
failureThreshold: 3
|
||||
successThreshold: 1
|
||||
initialDelaySeconds: 0
|
||||
timeoutSeconds: 1
|
||||
tcpSocket:
|
||||
port: 80
|
||||
periodSeconds: 10
|
||||
startupProbe:
|
||||
failureThreshold: 20
|
||||
successThreshold: 1
|
||||
initialDelaySeconds: 0
|
||||
timeoutSeconds: 1
|
||||
tcpSocket:
|
||||
port: 80
|
||||
periodSeconds: 1
|
||||
Reference in New Issue
Block a user