Commit 37c1c5db authored by Tim Leers's avatar Tim Leers

Merge branch 'adjust-gitlab-ci' into 'master'

Adjust gitlab ci

See merge request uplex/varnish/k8s-ingress!17
parents d092289c 8a3fd6f2
......@@ -37,11 +37,13 @@ test:
image: golang:1.21
stage: test
rules:
- changes:
- cmd/**.go
- pkg/**.go
- if: $CI_MERGE_REQUEST_ID
changes:
- cmd/**/*.go
- pkg/**/*.go
- go.mod
- go.sum
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
before_script:
- apt-get update -q
- apt-get install -y golang-golang-x-tools pandoc git
......
nameOverride: varnish-ingress
fullnameOverride: varnish-ingress
vikingService:
## Name of the ingress class to route through this controller
##
ingressClass: varnish
......@@ -9,3 +8,7 @@ vikingService:
# labels to add to the pod container metadata
podLabels:
app: varnish-ingress
varnish:
livenessProbeConfig:
failureThreshold: 50
......@@ -169,7 +169,6 @@ func NewIngressController(
incomplRetryDelay time.Duration,
maxSyncRetries uint,
) (*IngressController, error) {
ingc := IngressController{
log: log,
client: kubeClient,
......@@ -232,8 +231,7 @@ func NewIngressController(
}
if namespace == api_v1.NamespaceAll {
ingc.informers.ns =
infFactory.Core().V1().Namespaces().Informer()
ingc.informers.ns = infFactory.Core().V1().Namespaces().Informer()
nsDeleteFunc := cache.ResourceEventHandlerFuncs{
DeleteFunc: ingc.deleteNs,
}
......@@ -351,7 +349,7 @@ func (ingc *IngressController) updateObj(old, new interface{}) {
kind := "Unknown"
switch old.(type) {
case *net_v1.Ingress:
kind = "Ingress"
kind = "Ingresse"
case *net_v1.IngressClass:
kind = "IngressClass"
case *api_v1.Service:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment