Skip to content

Commit 264e0ed

Browse files
committed
Merge branch 'master' into version-bump
2 parents eb3b6a3 + 032603f commit 264e0ed

File tree

11 files changed

+26
-15
lines changed

11 files changed

+26
-15
lines changed

.github/workflows/pull_request.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ jobs:
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

api/v1alpha1/groupversion_info.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
2020
package v1alpha1
2121

2222
import (

bundle.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
77
LABEL operators.operatorframework.io.bundle.package.v1=ingressmonitorcontroller
88
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
99
LABEL operators.operatorframework.io.bundle.channel.default.v1=alpha
10-
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
1110
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.6.1+git
1211
LABEL 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.
1515
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1

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.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
2323
spec:
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

bundle/metadata/annotations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

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.16
6+
version: 2.1.17
77

88
# Application version to be deployed
9-
appVersion: 2.1.16
9+
appVersion: 2.1.17
1010

1111
keywords:
1212
- IngressMonitorController

charts/ingressmonitorcontroller/values.yaml

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

77
image:
88
repository: stakater/ingressmonitorcontroller
9-
tag: v2.1.16
9+
tag: v2.1.17
1010
pullPolicy: IfNotPresent
1111
imagePullSecrets: []
1212

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.16
16+
newTag: v2.1.17

pkg/monitors/statuscake/statuscake-mappers.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
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
1010
func 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
1919
func StatusCakeMonitorMonitorsToBaseMonitorsMapper(statuscakeMonitors []StatusCakeMonitorMonitor) []models.Monitor {
2020
var monitors []models.Monitor
2121
for index := 0; index < len(statuscakeMonitors); index++ {

pkg/monitors/statuscake/statuscake-responses.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package 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
44
type StatusCakeMonitorMonitor struct {
55
TestID int `json:"TestID"`
66
Paused bool `json:"Paused"`

0 commit comments

Comments
 (0)