Skip to content

Commit 47859bf

Browse files
authored
Merge pull request #2483 from kubernetes-sigs/master
🌱 prepare branch for release 3.3.0
2 parents b7a730c + acdede5 commit 47859bf

File tree

353 files changed

+1162
-490
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

353 files changed

+1162
-490
lines changed

.github/workflows/apidiff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Go
2020
uses: actions/setup-go@v2
2121
with:
22-
go-version: '1.16'
22+
go-version: '1.17'
2323
- name: Execute go-apidiff
2424
uses: joelanford/[email protected]
2525
with:

.github/workflows/testdata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Go
1919
uses: actions/setup-go@v2
2020
with:
21-
go-version: '1.16'
21+
go-version: '1.17'
2222
- name: Remove pre-installed kustomize
2323
# This step is needed as the following one tries to remove
2424
# kustomize for each test but has no permission to do so

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Go
2525
uses: actions/setup-go@v2
2626
with:
27-
go-version: '1.16'
27+
go-version: '1.17'
2828
# This step is needed as the following one tries to remove
2929
# kustomize for each test but has no permission to do so
3030
- name: Remove pre-installed kustomize
@@ -54,7 +54,7 @@ jobs:
5454
- name: Setup Go
5555
uses: actions/setup-go@v2
5656
with:
57-
go-version: '1.16'
57+
go-version: '1.17'
5858
- name: Generate the coverage output
5959
run: make test-coverage
6060
- name: Send the coverage output

CONTRIBUTING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ The docs are published off of three branches:
108108

109109
See [VERSIONING.md](VERSIONING.md#book-releases) for more information.
110110

111+
There are certain writing style guidelines for Kubernetes documentation, checkout [style guide](https://kubernetes.io/docs/contribute/style/style-guide/) for more information.
112+
111113
### How to preview the changes performed in the docs
112114

113115
Check the CI job after to do the Pull Request and then, click on in the `Details` of `netlify/kubebuilder/deploy-preview`

build/.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ builds:
4343
- linux_ppc64le
4444
- darwin_amd64
4545
env:
46-
- KUBERNETES_VERSION=1.22.1
46+
- KUBERNETES_VERSION=1.23.1
4747
- CGO_ENABLED=0
4848

4949
# Only binaries of the form "kubebuilder_${goos}_${goarch}" will be released.

docs/book/src/component-config-tutorial/api-changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var configFile string
2727
flag.StringVar(&configFile, "config", "",
2828
"The controller will load its initial configuration from this file. "+
2929
"Omit this flag to use the default configuration values. "+
30-
"Command-line flags override configuration from this file."
30+
"Command-line flags override configuration from this file.")
3131
```
3232

3333
Now, we can setup the `Options` struct and check if the `configFile` is set,

docs/book/src/component-config-tutorial/define-config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ values that are passed into the controller, to do this we can take a look at
99
To see all the available fields you can look at the `v1alpha` Controller
1010
Runtime config [ControllerManagerConfiguration](configtype)
1111

12-
[configtype]: https://pkg.go.dev/sigs.k8s.io/controller-runtime/pkg/config/v1alpha1/#ControllerManagerConfigurationSpec
12+
[configtype]: https://pkg.go.dev/sigs.k8s.io/controller-runtime/pkg/config/v1alpha1#ControllerManagerConfigurationSpec

docs/book/src/component-config-tutorial/testdata/project/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.16 as builder
2+
FROM golang:1.17 as builder
33

44
WORKDIR /workspace
55
# Copy the Go Modules manifests

docs/book/src/component-config-tutorial/testdata/project/api/v2/groupversion_info.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2021 The Kubernetes authors.
2+
Copyright 2022 The Kubernetes authors.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

docs/book/src/component-config-tutorial/testdata/project/api/v2/projectconfig_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2021 The Kubernetes authors.
2+
Copyright 2022 The Kubernetes authors.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)