Skip to content

Commit

Permalink
[skip-ci] Update artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
stakater-user committed Nov 21, 2024
1 parent 6b29093 commit 7aac31d
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,10 @@ spec:
port:
description: TCP Port
type: integer
rawPostData:
description: RawPostData can be used to send parameters within
the URL. Changes the request from a GET to a POST
type: string
realBrowser:
description: Enable Real Browser
type: boolean
Expand All @@ -306,6 +310,9 @@ spec:
triggerRate:
description: Minutes to wait before sending an alert
type: integer
userAgent:
description: UserAgent is used to set a user agent string.
type: string
type: object
updownConfig:
description: Configuration for Updown Monitor Provider
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ metadata:
capabilities: Basic Install
operators.operatorframework.io/builder: operator-sdk-v1.18.0+git
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
name: ingressmonitorcontroller.v2.1.66
name: ingressmonitorcontroller.v2.1.67
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -151,7 +151,7 @@ spec:
- --leader-elect
command:
- /manager
image: stakater/ingressmonitorcontroller:v2.1.66
image: stakater/ingressmonitorcontroller:v2.1.67
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -251,4 +251,4 @@ spec:
provider:
name: stakater
url: https://stakater.com
version: 2.1.66
version: 2.1.67
4 changes: 2 additions & 2 deletions charts/ingressmonitorcontroller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: ingressmonitorcontroller
description: IngressMonitorController Operator chart that runs on kubernetes

# Helm chart Version
version: 2.1.66
version: 2.1.67

# Application version to be deployed
appVersion: 2.1.66
appVersion: 2.1.67

keywords:
- IngressMonitorController
Expand Down
2 changes: 1 addition & 1 deletion charts/ingressmonitorcontroller/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ replicaCount: 1

image:
repository: stakater/ingressmonitorcontroller
tag: v2.1.66
tag: v2.1.67
pullPolicy: IfNotPresent
imagePullSecrets: []

Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ kind: Kustomization
images:
- name: controller
newName: stakater/ingressmonitorcontroller
newTag: v2.1.66
newTag: v2.1.67
6 changes: 3 additions & 3 deletions pkg/monitors/statuscake/statuscake-monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,9 @@ func buildUpsertForm(m models.Monitor, cgroup string) url.Values {
if providerConfig != nil && len(providerConfig.RawPostData) > 0 {
f.Add("post_raw", providerConfig.RawPostData)
}
if providerConfig != nil && len(providerConfig.UserAgent) > 0 {
f.Add("user_agent", providerConfig.UserAgent)
}
if providerConfig != nil && len(providerConfig.UserAgent) > 0 {
f.Add("user_agent", providerConfig.UserAgent)
}
return f
}

Expand Down

0 comments on commit 7aac31d

Please sign in to comment.