Skip to content

Commit c189417

Browse files
authored
Merge branch 'main' into appProtocol
2 parents 764f56c + 63dfcfe commit c189417

File tree

11 files changed

+171
-49
lines changed

11 files changed

+171
-49
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Feature request 🧭
2+
description: Suggest an idea for this project
3+
labels: "feature-request"
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: Proposal
8+
description: "What would you like to have as a feature"
9+
placeholder: "A clear and concise description of what you want to happen."
10+
validations:
11+
required: true
12+
- type: textarea
13+
attributes:
14+
label: Use-Case
15+
description: "How would this help you?"
16+
placeholder: "Tell us more what you'd like to achieve."
17+
validations:
18+
required: false
19+
- type: dropdown
20+
id: interested-in-implementing-the-feature
21+
attributes:
22+
label: Is this a feature you are interested in implementing yourself?
23+
options:
24+
- 'No'
25+
- 'Maybe'
26+
- 'Yes'
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: anything-else
31+
attributes:
32+
label: Anything else?
33+
description: "Let us know if you have anything else to share"
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: Report a bug 🐛
2+
description: Create a report to help us improve
3+
labels: "bug"
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
## Self-help
9+
Thank you for considering to open a bug report!
10+
11+
Before you do, however, make sure to check our existing resources to see if it has already been discussed/reported:
12+
- [Reported bugs](https://github.com/percona/percona-server-mongodb-operator/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3Abug)
13+
- [JIRA bugs](https://perconadev.atlassian.net/issues/K8SPSMDB-1028?jql=project%20%3D%20k8spsmdb%20and%20issuetype%20%3D%20Bug%20and%20resolution%20%3D%20Unresolved)
14+
- [Percona Operator for MongoDB forum](https://forums.percona.com/c/mongodb/percona-kubernetes-operator-for-mongodb/29)
15+
- type: textarea
16+
attributes:
17+
label: Report
18+
description: "What bug have you encountered?"
19+
placeholder: "A clear and concise description of what the bug is."
20+
validations:
21+
required: true
22+
- type: textarea
23+
attributes:
24+
label: More about the problem
25+
description: What do you see happening
26+
placeholder: Logs, expected behavior, other
27+
validations:
28+
required: true
29+
- type: textarea
30+
attributes:
31+
label: Steps to reproduce
32+
description: "Tell us how to reproduce the problem"
33+
value: |
34+
1.
35+
2.
36+
3.
37+
validations:
38+
required: true
39+
- type: textarea
40+
attributes:
41+
label: Versions
42+
description: "Tell us which versions do you use"
43+
value: |
44+
1. Kubernetes
45+
2. Operator
46+
3. Database
47+
validations:
48+
required: true
49+
- type: textarea
50+
id: anything-else
51+
attributes:
52+
label: Anything else?
53+
description: "Let us know if you have anything else to share"

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Ask a question about Percona Operator for MongoDB or get support
4+
url: https://forums.percona.com/c/mongodb/percona-kubernetes-operator-for-mongodb/29
5+
about: Ask a question or request support for using Percona Operator for MongoDB
6+
- name: Report vulnerability or security concern
7+
url: https://www.percona.com/security
8+
about: For any security issues or concerns

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ updates:
4242
labels:
4343
- "dependencies"
4444
schedule:
45-
interval: monthly
45+
interval: weekly
4646
day: "monday"
4747
time: "01:00"
4848

.github/workflows/reviewdog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- uses: actions/checkout@v4.1.1
31-
- uses: actions/setup-go@v4
31+
- uses: actions/setup-go@v5
3232
with:
3333
go-version: '^1.17'
3434
- run: go install mvdan.cc/sh/v3/cmd/shfmt@latest

.github/workflows/scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
export DOCKER_SQUASH=0
1515
./e2e-tests/build
1616
- name: Run Trivy vulnerability scanner
17-
uses: aquasecurity/trivy-action@0.14.0
17+
uses: aquasecurity/trivy-action@0.16.1
1818
with:
1919
image-ref: 'docker.io/perconalab/percona-server-mongodb-operator:${{ github.sha }}'
2020
format: 'table'

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: Test
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/setup-go@v4
8+
- uses: actions/setup-go@v5
99
with:
1010
go-version: '^1.19'
1111
- uses: actions/checkout@v4.1.1

build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.20 AS go_builder
1+
FROM golang:1.21 AS go_builder
22
WORKDIR /go/src/github.com/percona/percona-server-mongodb-operator
33

44
COPY . .

go.mod

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/percona/percona-server-mongodb-operator
22

3-
go 1.20
3+
go 1.21
44

55
require (
66
github.com/Percona-Lab/percona-version-service v0.0.0-20230216094301-f9489c81b52a
@@ -25,9 +25,9 @@ require (
2525
google.golang.org/grpc v1.59.0
2626
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22
2727
gopkg.in/yaml.v2 v2.4.0
28-
k8s.io/api v0.28.4
29-
k8s.io/apimachinery v0.28.4
30-
k8s.io/client-go v0.28.4
28+
k8s.io/api v0.29.0
29+
k8s.io/apimachinery v0.29.0
30+
k8s.io/client-go v0.29.0
3131
sigs.k8s.io/controller-runtime v0.16.1
3232
sigs.k8s.io/mcs-api v0.1.0
3333
)
@@ -43,7 +43,7 @@ require (
4343
github.com/beorn7/perks v1.0.1 // indirect
4444
github.com/cespare/xxhash/v2 v2.2.0 // indirect
4545
github.com/davecgh/go-spew v1.1.1 // indirect
46-
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
46+
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
4747
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
4848
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
4949
github.com/fsnotify/fsnotify v1.6.0 // indirect
@@ -60,9 +60,10 @@ require (
6060
github.com/golang/protobuf v1.5.3 // indirect
6161
github.com/golang/snappy v0.0.4 // indirect
6262
github.com/google/gnostic-models v0.6.8 // indirect
63-
github.com/google/go-cmp v0.5.9 // indirect
63+
github.com/google/go-cmp v0.6.0 // indirect
6464
github.com/google/gofuzz v1.2.0 // indirect
6565
github.com/google/uuid v1.3.1 // indirect
66+
github.com/gorilla/websocket v1.5.0 // indirect
6667
github.com/imdario/mergo v0.3.12 // indirect
6768
github.com/jessevdk/go-flags v1.5.0 // indirect
6869
github.com/jmespath/go-jmespath v0.4.0 // indirect
@@ -81,6 +82,7 @@ require (
8182
github.com/mongodb/mongo-tools v0.0.0-20230720205640-fb74684da15f // indirect
8283
github.com/montanaflynn/stats v0.6.6 // indirect
8384
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
85+
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
8486
github.com/oklog/ulid v1.3.1 // indirect
8587
github.com/opentracing/opentracing-go v1.2.0 // indirect
8688
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
@@ -99,14 +101,14 @@ require (
99101
go.opentelemetry.io/otel v1.15.0 // indirect
100102
go.opentelemetry.io/otel/trace v1.15.0 // indirect
101103
go.uber.org/multierr v1.11.0 // indirect
102-
golang.org/x/crypto v0.14.0 // indirect
104+
golang.org/x/crypto v0.17.0 // indirect
103105
golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect
104106
golang.org/x/mod v0.12.0 // indirect
105107
golang.org/x/net v0.17.0 // indirect
106108
golang.org/x/oauth2 v0.12.0 // indirect
107-
golang.org/x/sys v0.13.0 // indirect
108-
golang.org/x/term v0.13.0 // indirect
109-
golang.org/x/text v0.13.0 // indirect
109+
golang.org/x/sys v0.15.0 // indirect
110+
golang.org/x/term v0.15.0 // indirect
111+
golang.org/x/text v0.14.0 // indirect
110112
golang.org/x/time v0.3.0 // indirect
111113
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
112114
google.golang.org/appengine v1.6.7 // indirect
@@ -118,12 +120,12 @@ require (
118120
gopkg.in/yaml.v3 v3.0.1 // indirect
119121
k8s.io/apiextensions-apiserver v0.28.0 // indirect
120122
k8s.io/component-base v0.28.1 // indirect
121-
k8s.io/klog/v2 v2.100.1 // indirect
122-
k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 // indirect
123-
k8s.io/utils v0.0.0-20230505201702-9f6742963106 // indirect
123+
k8s.io/klog/v2 v2.110.1 // indirect
124+
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
125+
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
124126
sigs.k8s.io/gateway-api v0.7.0 // indirect
125127
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
126-
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
128+
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
127129
sigs.k8s.io/yaml v1.3.0 // indirect
128130
)
129131

0 commit comments

Comments
 (0)