File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 18
18
- name : Install Go
19
19
uses : actions/setup-go@v3
20
20
with :
21
- go-version : 1.19 .x
21
+ go-version : 1.20 .x
22
22
cache : true
23
23
check-latest : true
24
24
- name : Build
33
33
- name : Install Go
34
34
uses : actions/setup-go@v3
35
35
with :
36
- go-version : 1.19 .x
36
+ go-version : 1.20 .x
37
37
cache : true
38
38
check-latest : true
39
39
- name : Verify fmt
62
62
- name : Install Go
63
63
uses : actions/setup-go@v3
64
64
with :
65
- go-version : 1.19 .x
65
+ go-version : 1.20 .x
66
66
cache : true
67
67
check-latest : true
68
68
- name : Install kubectl
Original file line number Diff line number Diff line change @@ -326,7 +326,7 @@ KO ?= $(LOCALBIN)/ko
326
326
327
327
# # Tool Versions
328
328
329
- KO_VERSION ?= v0.11.2
329
+ KO_VERSION ?= v0.15.0
330
330
331
331
.PHONY : ko
332
332
ko : $(KO ) # # Download ko locally if necessary
Original file line number Diff line number Diff line change 3
3
## Prerequisites
4
4
5
5
* Ensure you have access to a Kubernetes cluster via ` kubectl ` with cluster admin permissions.
6
- * Install Go version 1.18 or higher.
6
+ * Install [ Go ] ( https://go.dev/doc/install ) version 1.20 or higher.
7
7
8
8
## Building locally
9
9
@@ -28,7 +28,7 @@ The following make options can be set:
28
28
* ` VERSION ` - defaults to the current version of Shipwright.
29
29
This must be a valid [ semantic version] ( https://semver.org/ ) , and will be used as the tag for the resulting image.
30
30
31
- Refer to the [ ko documentation] ( https://github.com/google/ko#local-publishing-options ) for more information.
31
+ Refer to the [ ko documentation] ( https://ko.build/ ) for more information.
32
32
33
33
## Deploy to Kubernetes
34
34
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Additional steps need to be taken to ensure the operator can be deployed with OL
9
9
## Prerequisites
10
10
11
11
* Ensure you have access to a Kubernetes cluster via ` kubectl ` with cluster admin permissions.
12
- * Install Go version 1.17 or higher.
12
+ * Install [ Go ] ( https://go.dev/doc/install ) version 1.20 or higher.
13
13
* Install OLM on your cluster. This can be done using the ` make install-olm ` command.
14
14
* Ability to push to a container registry that is accessible inside your Kubernetes cluster.
15
15
Original file line number Diff line number Diff line change 1
1
module github.com/shipwright-io/operator
2
2
3
- go 1.19
3
+ go 1.20
4
4
5
5
require (
6
6
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d
Original file line number Diff line number Diff line change 8
8
set -e
9
9
10
10
DEST=" ${1:- bin/ ko} "
11
- KO_VERSION=" ${KO_VERSION:- 0.11.2 } "
11
+ KO_VERSION=" ${KO_VERSION:- 0.15.0 } "
12
12
13
13
OS=" ${OS:- linux} "
14
14
ARCH=" ${ARCH:- amd64} "
You can’t perform that action at this time.
0 commit comments