Skip to content

Commit 11b1c80

Browse files
committed
[skip-ci] Update artifacts
1 parent b30ddb5 commit 11b1c80

File tree

5 files changed

+96
-7
lines changed

5 files changed

+96
-7
lines changed

bundle/manifests/endpointmonitor.stakater.com_endpointmonitors.yaml

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,95 @@ spec:
143143
HTTP checks.
144144
type: boolean
145145
type: object
146+
pingdomTransactionConfig:
147+
description: Configuration for Pingdom Transaction Monitor Provider
148+
properties:
149+
alertContacts:
150+
description: '`-` separated contact id''s (e.g. "1234567_8_9-9876543_2_1")'
151+
type: string
152+
alertIntegrations:
153+
description: '`-` separated set list of integrations ids (e.g.
154+
"91166-12168")'
155+
type: string
156+
custom_message:
157+
description: Custom message that is part of the email and webhook
158+
alerts
159+
type: string
160+
interval:
161+
description: 'TMS test intervals in minutes. Allowed intervals:
162+
5,10,20,60,720,1440. The interval you''re allowed to set may
163+
vary depending on your current plan.'
164+
enum:
165+
- 5
166+
- 10
167+
- 20
168+
- 60
169+
- 720
170+
- 1440
171+
type: integer
172+
paused:
173+
description: 'Check status: active or inactive'
174+
type: boolean
175+
region:
176+
description: 'Name of the region where the check is executed.
177+
Supported regions: us-east, us-west, eu, au'
178+
enum:
179+
- us-east
180+
- us-west
181+
- eu
182+
- au
183+
type: string
184+
send_notification_when_down:
185+
description: Send notification when down X times
186+
format: int64
187+
type: integer
188+
severity_level:
189+
description: 'Check importance- how important are the alerts when
190+
the check fails. Allowed values: low, high'
191+
enum:
192+
- low
193+
- high
194+
type: string
195+
steps:
196+
description: steps to be executed as part of the check
197+
items:
198+
description: PingdomStep respresents a step of the script to
199+
run a transcaction check
200+
properties:
201+
args:
202+
additionalProperties:
203+
type: string
204+
description: 'contains the html element with assigned value
205+
the key element is always lowercase for example {"url":
206+
"https://www.pingdom.com"} see available values at https://pkg.go.dev/github.com/karlderkaefer/pingdom-golang-client@latest/pkg/pingdom/client/tmschecks#StepArg'
207+
type: object
208+
function:
209+
description: 'contains the function that is executed as
210+
part of the step commands: go_to, click, fill, check,
211+
uncheck, sleep, select_radio, basic_auth, submit, wait_for_element,
212+
wait_for_contains validations: url, exists, not_exists,
213+
contains, not_contains, field_contains, field_not_contains,
214+
is_checked, is_not_checked, radio_selected, dropdown_selected,
215+
dropdown_not_selected see updated list https://docs.pingdom.com/api/#section/TMS-Steps-Vocabulary/Script-transaction-checks'
216+
type: string
217+
required:
218+
- args
219+
- function
220+
type: object
221+
type: array
222+
tags:
223+
description: List of tags for a check. The tag name may contain
224+
the characters 'A-Z', 'a-z', '0-9', '_' and '-'. The maximum
225+
length of a tag is 64 characters.
226+
items:
227+
type: string
228+
type: array
229+
teamAlertContacts:
230+
description: '`-` separated team id''s (e.g. "1234567_8_9-9876543_2_1")'
231+
type: string
232+
required:
233+
- steps
234+
type: object
146235
providers:
147236
description: Comma separated list of providers
148237
type: string

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.59
21+
name: ingressmonitorcontroller.v2.1.60
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.59
154+
image: stakater/ingressmonitorcontroller:v2.1.60
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.59
254+
version: 2.1.60

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.59
6+
version: 2.1.60
77

88
# Application version to be deployed
9-
appVersion: 2.1.59
9+
appVersion: 2.1.60
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.59
11+
tag: v2.1.60
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.59
16+
newTag: v2.1.60

0 commit comments

Comments
 (0)