File tree Expand file tree Collapse file tree 11 files changed +26
-15
lines changed
charts/ingressmonitorcontroller Expand file tree Collapse file tree 11 files changed +26
-15
lines changed Original file line number Diff line number Diff line change 5050 sudo install ./kubectl /usr/local/bin/ && rm kubectl
5151 kubectl version --short --client
5252 kubectl version --short --client | grep -q ${KUBERNETES_VERSION}
53-
5453 - name : Install Kind
5554 run : |
5655 curl -L -o kind https://github.com/kubernetes-sigs/kind/releases/download/v${KIND_VERSION}/kind-linux-amd64
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ limitations under the License.
1515*/
1616
1717// Package v1alpha1 contains API Schema definitions for the endpointmonitor v1alpha1 API group
18- //+kubebuilder:object:generate=true
19- //+groupName=endpointmonitor.stakater.com
18+ // +kubebuilder:object:generate=true
19+ // +groupName=endpointmonitor.stakater.com
2020package v1alpha1
2121
2222import (
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
77LABEL operators.operatorframework.io.bundle.package.v1=ingressmonitorcontroller
88LABEL operators.operatorframework.io.bundle.channels.v1=alpha
99LABEL operators.operatorframework.io.bundle.channel.default.v1=alpha
10- LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
1110LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.6.1+git
1211LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3
12+ LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
1313
1414# Labels for testing.
1515LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ metadata:
1818 capabilities : Basic Install
1919 operators.operatorframework.io/builder : operator-sdk-v1.6.1+git
2020 operators.operatorframework.io/project_layout : go.kubebuilder.io/v3
21- name : ingressmonitorcontroller.v2.1.16
21+ name : ingressmonitorcontroller.v2.1.17
2222 namespace : placeholder
2323spec :
2424 apiservicedefinitions : {}
@@ -142,7 +142,7 @@ spec:
142142 - --leader-elect
143143 command :
144144 - /manager
145- image : stakater/ingressmonitorcontroller:v2.1.16
145+ image : stakater/ingressmonitorcontroller:v2.1.17
146146 livenessProbe :
147147 httpGet :
148148 path : /healthz
@@ -230,4 +230,4 @@ spec:
230230 provider :
231231 name : stakater
232232 url : https://stakater.com
233- version : 2.1.16
233+ version : 2.1.17
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ annotations:
66 operators.operatorframework.io.bundle.package.v1 : ingressmonitorcontroller
77 operators.operatorframework.io.bundle.channels.v1 : alpha
88 operators.operatorframework.io.bundle.channel.default.v1 : alpha
9- operators.operatorframework.io.metrics.mediatype.v1 : metrics+v1
109 operators.operatorframework.io.metrics.builder : operator-sdk-v1.6.1+git
1110 operators.operatorframework.io.metrics.project_layout : go.kubebuilder.io/v3
11+ operators.operatorframework.io.metrics.mediatype.v1 : metrics+v1
1212
1313 # Annotations for testing.
1414 operators.operatorframework.io.test.mediatype.v1 : scorecard+v1
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ name: ingressmonitorcontroller
33description : IngressMonitorController Operator chart that runs on kubernetes
44
55# Helm chart Version
6- version : 2.1.16
6+ version : 2.1.17
77
88# Application version to be deployed
9- appVersion : 2.1.16
9+ appVersion : 2.1.17
1010
1111keywords :
1212 - IngressMonitorController
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ replicaCount: 1
66
77image :
88 repository : stakater/ingressmonitorcontroller
9- tag : v2.1.16
9+ tag : v2.1.17
1010 pullPolicy : IfNotPresent
1111imagePullSecrets : []
1212
Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ kind: Kustomization
1313images :
1414- name : controller
1515 newName : stakater/ingressmonitorcontroller
16- newTag : v2.1.16
16+ newTag : v2.1.17
Original file line number Diff line number Diff line change 66 "github.com/stakater/IngressMonitorController/v2/pkg/models"
77)
88
9- //StatusCakeMonitorMonitorToBaseMonitorMapper function to map Statuscake structure to Monitor
9+ // StatusCakeMonitorMonitorToBaseMonitorMapper function to map Statuscake structure to Monitor
1010func StatusCakeMonitorMonitorToBaseMonitorMapper (statuscakeMonitor StatusCakeMonitorMonitor ) * models.Monitor {
1111 var m models.Monitor
1212 m .Name = statuscakeMonitor .WebsiteName
@@ -15,7 +15,7 @@ func StatusCakeMonitorMonitorToBaseMonitorMapper(statuscakeMonitor StatusCakeMon
1515 return & m
1616}
1717
18- //StatusCakeMonitorMonitorsToBaseMonitorsMapper function to map Statuscake structure to Monitor
18+ // StatusCakeMonitorMonitorsToBaseMonitorsMapper function to map Statuscake structure to Monitor
1919func StatusCakeMonitorMonitorsToBaseMonitorsMapper (statuscakeMonitors []StatusCakeMonitorMonitor ) []models.Monitor {
2020 var monitors []models.Monitor
2121 for index := 0 ; index < len (statuscakeMonitors ); index ++ {
Original file line number Diff line number Diff line change 11package statuscake
22
3- //StatusCakeMonitorMonitor response Structure for GetAll and GetByName API's for Statuscake
3+ // StatusCakeMonitorMonitor response Structure for GetAll and GetByName API's for Statuscake
44type StatusCakeMonitorMonitor struct {
55 TestID int `json:"TestID"`
66 Paused bool `json:"Paused"`
You can’t perform that action at this time.
0 commit comments