Skip to content

Commit 7aac31d

Browse files
committed
[skip-ci] Update artifacts
1 parent 6b29093 commit 7aac31d

File tree

6 files changed

+17
-10
lines changed

6 files changed

+17
-10
lines changed

bundle/manifests/endpointmonitor.stakater.com_endpointmonitors.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,10 @@ spec:
287287
port:
288288
description: TCP Port
289289
type: integer
290+
rawPostData:
291+
description: RawPostData can be used to send parameters within
292+
the URL. Changes the request from a GET to a POST
293+
type: string
290294
realBrowser:
291295
description: Enable Real Browser
292296
type: boolean
@@ -306,6 +310,9 @@ spec:
306310
triggerRate:
307311
description: Minutes to wait before sending an alert
308312
type: integer
313+
userAgent:
314+
description: UserAgent is used to set a user agent string.
315+
type: string
309316
type: object
310317
updownConfig:
311318
description: Configuration for Updown Monitor Provider

bundle/manifests/ingressmonitorcontroller.clusterserviceversion.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ metadata:
1818
capabilities: Basic Install
1919
operators.operatorframework.io/builder: operator-sdk-v1.18.0+git
2020
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
21-
name: ingressmonitorcontroller.v2.1.66
21+
name: ingressmonitorcontroller.v2.1.67
2222
namespace: placeholder
2323
spec:
2424
apiservicedefinitions: {}
@@ -151,7 +151,7 @@ spec:
151151
- --leader-elect
152152
command:
153153
- /manager
154-
image: stakater/ingressmonitorcontroller:v2.1.66
154+
image: stakater/ingressmonitorcontroller:v2.1.67
155155
livenessProbe:
156156
httpGet:
157157
path: /healthz
@@ -251,4 +251,4 @@ spec:
251251
provider:
252252
name: stakater
253253
url: https://stakater.com
254-
version: 2.1.66
254+
version: 2.1.67

charts/ingressmonitorcontroller/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: ingressmonitorcontroller
33
description: IngressMonitorController Operator chart that runs on kubernetes
44

55
# Helm chart Version
6-
version: 2.1.66
6+
version: 2.1.67
77

88
# Application version to be deployed
9-
appVersion: 2.1.66
9+
appVersion: 2.1.67
1010

1111
keywords:
1212
- IngressMonitorController

charts/ingressmonitorcontroller/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ replicaCount: 1
88

99
image:
1010
repository: stakater/ingressmonitorcontroller
11-
tag: v2.1.66
11+
tag: v2.1.67
1212
pullPolicy: IfNotPresent
1313
imagePullSecrets: []
1414

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ kind: Kustomization
1313
images:
1414
- name: controller
1515
newName: stakater/ingressmonitorcontroller
16-
newTag: v2.1.66
16+
newTag: v2.1.67

pkg/monitors/statuscake/statuscake-monitor.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,9 +205,9 @@ func buildUpsertForm(m models.Monitor, cgroup string) url.Values {
205205
if providerConfig != nil && len(providerConfig.RawPostData) > 0 {
206206
f.Add("post_raw", providerConfig.RawPostData)
207207
}
208-
if providerConfig != nil && len(providerConfig.UserAgent) > 0 {
209-
f.Add("user_agent", providerConfig.UserAgent)
210-
}
208+
if providerConfig != nil && len(providerConfig.UserAgent) > 0 {
209+
f.Add("user_agent", providerConfig.UserAgent)
210+
}
211211
return f
212212
}
213213

0 commit comments

Comments
 (0)