Skip to content

Commit 01a8336

Browse files
authored
Skaffold master -> main (GoogleContainerTools#6263)
- Rewrite the few existing uses of `skaffold/(blob|tree)/HEAD` to use `main` as GitHub's file viewer uses a commit rather than a branch. - Rewrite the buildpacks references to use `main` since they already switched. - Explicitly specify `main` for remote repositories due to GoogleContainerTools#6264
1 parent 8c34f1e commit 01a8336

File tree

41 files changed

+68
-64
lines changed

Some content is hidden

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

41 files changed

+68
-64
lines changed

.github/workflows/draft-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: create draft release
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77

88
permissions: read-all
99

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ Note: This release comes with a new config version, `v2beta14`. To upgrade your
423423

424424
Highlights:
425425
* More granular control of `port-forward` options. Checkout the updated [documentation](https://skaffold.dev/docs/pipeline-stages/port-forwarding/) for details.
426-
* `InputDigest` image tagging strategy from the [Improve taggers proposal](https://github.com/GoogleContainerTools/skaffold/blob/master/docs/design_proposals/digest-tagger.md) has landed.
426+
* `InputDigest` image tagging strategy from the [Improve taggers proposal](https://github.com/GoogleContainerTools/skaffold/blob/main/docs/design_proposals/digest-tagger.md) has landed.
427427

428428
New Features:
429429
* Revise port-forward behaviour [#5554](https://github.com/GoogleContainerTools/skaffold/pull/5554)
@@ -506,7 +506,7 @@ Highlights:
506506
* New command `skaffold apply` for when you want Skaffold to simply deploy your pre-rendered Kubernetes manifests.
507507
* Debugging Python application using `skaffold debug` now uses `debugpy` by default.
508508
* New tutorials for [`artifact dependencies`](https://skaffold.dev/docs/tutorials/artifact-dependencies/) and [`configuration dependencies`](https://skaffold.dev/docs/tutorials/config-dependencies/) features.
509-
* New example project [`examples/custom-buildx`](https://github.com/GoogleContainerTools/skaffold/tree/master/examples/custom-buildx) showing how to build multi-arch images using Skaffold.
509+
* New example project [`examples/custom-buildx`](https://github.com/GoogleContainerTools/skaffold/tree/main/examples/custom-buildx) showing how to build multi-arch images using Skaffold.
510510

511511
New Features:
512512
* Add 'skaffold apply' command [#5543](https://github.com/GoogleContainerTools/skaffold/pull/5543)
@@ -948,7 +948,7 @@ Note: This release comes with a new config version, `v2beta9`. To upgrade your s
948948
Highlights:
949949
* Artifact Modules Support: Skaffold allow users to specify artifact dependencies for dockerfile artifacts.
950950

951-
To use, look at [microservice example](https://github.com/GoogleContainerTools/skaffold/tree/master/examples/microservices). *Docs coming soon*
951+
To use, look at [microservice example](https://github.com/GoogleContainerTools/skaffold/tree/main/examples/microservices). *Docs coming soon*
952952
* Skaffold init support for polyglot-maven projects [#4871](https://github.com/GoogleContainerTools/skaffold/pull/4871)
953953
* Skaffold `debug` helper images now moved to gcr.io/k8s-skaffold/skaffold-debug-support [#4961](https://github.com/GoogleContainerTools/skaffold/pull/4961)
954954

DEVELOPMENT.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Visual Studio Code with [Go plugin](https://github.com/Microsoft/vscode-go):
6969

7070
Some changes to the skaffold code require a change to the skaffold config. These changes require a few extra steps:
7171

72-
* Open the latest Config at [pkg/skaffold/schema/latest/v1/config.go](https://github.com/GoogleContainerTools/skaffold/blob/master/pkg/skaffold/schema/latest/v1/config.go) and inspect the comment at [L28](https://github.com/GoogleContainerTools/skaffold/blob/master/pkg/skaffold/schema/latest/v1/config.go#L28)
72+
* Open the latest Config at [pkg/skaffold/schema/latest/v1/config.go](https://github.com/GoogleContainerTools/skaffold/blob/main/pkg/skaffold/schema/latest/v1/config.go) and inspect the comment at [L28](https://github.com/GoogleContainerTools/skaffold/blob/main/pkg/skaffold/schema/latest/v1/config.go#L28)
7373
* If the line mentions the config version is not released, proceed making your changes.
7474
```
7575
// This config version is not yet released, it is SAFE TO MODIFY the structs in this file.
@@ -101,14 +101,14 @@ For more details behind the logic of config changes see [the Skaffold config man
101101

102102
## Making changes to the Skaffold API
103103

104-
We build the API directly through gRPC, which gets translated into REST API through a reverse proxy gateway library. When adding new message types, make changes to [proto/v1/skaffold.proto](https://github.com/GoogleContainerTools/skaffold/blob/master/proto/v1/skaffold.proto), and when adding new enum types, make changes to [proto/enums/enums.proto](https://github.com/GoogleContainerTools/skaffold/blob/master/proto/enums/enums.proto). When changing either of these files, you can run `./hack/generate-proto.sh` to generate the equivalent Go code.
104+
We build the API directly through gRPC, which gets translated into REST API through a reverse proxy gateway library. When adding new message types, make changes to [proto/v1/skaffold.proto](https://github.com/GoogleContainerTools/skaffold/blob/main/proto/v1/skaffold.proto), and when adding new enum types, make changes to [proto/enums/enums.proto](https://github.com/GoogleContainerTools/skaffold/blob/main/proto/enums/enums.proto). When changing either of these files, you can run `./hack/generate-proto.sh` to generate the equivalent Go code.
105105

106106
## Adding actionable error messages to code.
107107
Skaffold has a built-in framework to provide actionable error messages for user to help bootstrap skaffold errors.
108108

109109
Also, [v1.19.0](https://github.com/GoogleContainerTools/skaffold/releases/tag/v1.19.0) onwards, skaffold is collecting failure error codes to help the team get more insights into common failure scenarios.
110110

111-
To take advantage of this framework, contributors can simply use the [`ErrDef`](https://github.com/GoogleContainerTools/skaffold/blob/master/pkg/skaffold/errors/err_def.go#L32) struct to throw meaningful actionable error messages and
111+
To take advantage of this framework, contributors can simply use the [`ErrDef`](https://github.com/GoogleContainerTools/skaffold/blob/main/pkg/skaffold/errors/err_def.go#L32) struct to throw meaningful actionable error messages and
112112
improve user experience.
113113

114114
e.g In this example [PR](https://github.com/GoogleContainerTools/skaffold/pull/5953),
@@ -280,7 +280,7 @@ Skaffold release process works with Google Cloud Build within our own project `k
280280

281281
In order to be able to iterate/fix the release process you can pass in your own project and bucket as parameters to the build.
282282

283-
We continuously release **builds** under `gs://skaffold/builds`. This is done by triggering `cloudbuild.yaml` on every push to master.
283+
We continuously release **builds** under `gs://skaffold/builds`. This is done by triggering `cloudbuild.yaml` on every push to `main`.
284284

285285
To run a build on your own project:
286286

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
---------------------
55

6-
[![Build Status](https://travis-ci.com/GoogleContainerTools/skaffold.svg?branch=master)](https://travis-ci.com/GoogleContainerTools/skaffold)
7-
[![Code Coverage](https://codecov.io/gh/GoogleContainerTools/skaffold/branch/master/graph/badge.svg)](https://codecov.io/gh/GoogleContainerTools/skaffold)
8-
[![LICENSE](https://img.shields.io/github/license/GoogleContainerTools/skaffold.svg)](https://github.com/GoogleContainerTools/skaffold/blob/master/LICENSE)
6+
[![Build Status](https://travis-ci.com/GoogleContainerTools/skaffold.svg?branch=main)](https://travis-ci.com/GoogleContainerTools/skaffold)
7+
[![Code Coverage](https://codecov.io/gh/GoogleContainerTools/skaffold/branch/main/graph/badge.svg)](https://codecov.io/gh/GoogleContainerTools/skaffold)
8+
[![LICENSE](https://img.shields.io/github/license/GoogleContainerTools/skaffold.svg)](https://github.com/GoogleContainerTools/skaffold/blob/main/LICENSE)
99
[![Releases](https://img.shields.io/github/release-pre/GoogleContainerTools/skaffold.svg)](https://github.com/GoogleContainerTools/skaffold/releases)
1010

1111
Skaffold is a command line tool that facilitates continuous development for

codelab/02_kpt-deploy/tutorial.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Kpt is [an OSS tool](https://github.com/GoogleContainerTools/kpt) for Kubernetes
1515
* How to enable kpt to deploy your configurations in their live state.
1616
* How to use kpt with kustomize.
1717

18-
This codelab is the second session. Check out the [01_kpt-validate](https://github.com/GoogleContainerTools/skaffold/tree/master/codelab/01_kpt-validate) about how to use kpt to validate your configuration before deploying to the cluster.
18+
This codelab is the second session. Check out the [01_kpt-validate](https://github.com/GoogleContainerTools/skaffold/tree/main/codelab/01_kpt-validate) about how to use kpt to validate your configuration before deploying to the cluster.
1919

2020
## Prerequisites
2121

@@ -87,7 +87,7 @@ Time to complete: **About 3 minutes**
8787

8888
<walkthrough-pin-section-icon></walkthrough-pin-section-icon>
8989
**Tips**
90-
> If you haven't used `skaffold dev`, you can go through this [codelab](https://github.com/GoogleContainerTools/skaffold/tree/master/codelab/01_kpt-validate).
90+
> If you haven't used `skaffold dev`, you can go through this [codelab](https://github.com/GoogleContainerTools/skaffold/tree/main/codelab/01_kpt-validate).
9191
9292
## Deploy
9393
Time to complete: **About 2 minutes**
@@ -226,4 +226,4 @@ from the skaffold.yaml[ reference doc](https://skaffold.dev/docs/references/yaml
226226

227227
You can also try out other kpt features like `kpt pkg` and `kpt cfg` from
228228
[the user guide](https://googlecontainertools.github.io/kpt/reference/). They will be supported
229-
in the skaffold soon. Stay tuned!
229+
in the skaffold soon. Stay tuned!

docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Skaffold site
22

33
The site for the last stable release is on: http://skaffold.dev
4-
The site for the last build from master is on: http://skaffold-latest.firebaseapp.com
4+
The site for the last build from HEAD is on: http://skaffold-latest.firebaseapp.com

docs/content/en/docs/design/api.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ kick off a suite of Selenium tests against the newly deployed service.
112112

113113
{{% tabs %}}
114114
{{% tab "HTTP API" %}}
115-
Using `curl` and `HTTP_RPC_PORT=50052`, an example output of a `skaffold dev` execution on our [getting-started example](https://github.com/GoogleContainerTools/skaffold/tree/master/examples/getting-started)
115+
Using `curl` and `HTTP_RPC_PORT=50052`, an example output of a `skaffold dev` execution on our [getting-started example](https://github.com/GoogleContainerTools/skaffold/tree/main/examples/getting-started)
116116
```bash
117117
curl localhost:50052/v1/events
118118
{"result":{"timestamp":"2019-10-16T18:26:11.385251549Z","event":{"metaEvent":{"entry":"Starting Skaffold: {Version:v0.39.0-16-g5bb7c9e0 ConfigVersion:skaffold/v1 GitVersion: GitCommit:5bb7c9e078e4d522a5ffc42a2f1274fd17d75902 GitTreeState:dirty BuildDate:2019-10-03T15:01:29Z GoVersion:go1.13rc1 Compiler:gc Platform:linux/amd64}"}}}}
@@ -176,7 +176,7 @@ The State API provides a snapshot of the current state of the following componen
176176
**Examples**
177177
{{% tabs %}}
178178
{{% tab "HTTP API" %}}
179-
Using `curl` and `HTTP_RPC_PORT=50052`, an example output of a `skaffold dev` execution on our [microservices example](https://github.com/GoogleContainerTools/skaffold/tree/master/examples/microservices)
179+
Using `curl` and `HTTP_RPC_PORT=50052`, an example output of a `skaffold dev` execution on our [microservices example](https://github.com/GoogleContainerTools/skaffold/tree/main/examples/microservices)
180180
```bash
181181
curl localhost:50052/v1/state | jq
182182
{

docs/content/en/docs/design/config.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -146,12 +146,12 @@ requires:
146146
git:
147147
repo: http://github.com/GoogleContainerTools/skaffold.git
148148
path: getting-started/skaffold.yaml
149-
ref: master
149+
ref: main
150150
```
151151

152152
The environment variable `SKAFFOLD_REMOTE_CACHE_DIR` or flag `--remote-cache-dir` specifies the download location for all remote repos. If undefined then it defaults to `~/.skaffold/repos`.
153153
The repo root directory name is a hash of the repo `uri` and the `branch/ref`.
154-
Every execution of a remote module resets the cached repo to the referenced ref. The default ref is master. If master is not defined then it defaults to main.
154+
Every execution of a remote module resets the cached repo to the referenced ref. The default ref is `master`. If `master` is not defined then it defaults to `main`.
155155
The remote config gets treated like a local config after substituting the path with the actual path in the cache directory.
156156

157157
### Profile Activation in required configs
@@ -179,4 +179,4 @@ Here, `profile1` is a profile that needs to exist in both configs `cfg1` and `cf
179179

180180
{{< alert title="Follow up" >}}
181181
Take a look at the [tutorial]({{< relref "/docs/tutorials/config-dependencies" >}}) section to see this in action.
182-
{{< /alert >}}
182+
{{< /alert >}}

docs/content/en/docs/pipeline-stages/builders/jib.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ You can define dependency on other artifacts using the `requires` keyword. This
5353

5454
**Example**
5555

56-
See the [Skaffold-Jib demo project](https://github.com/GoogleContainerTools/skaffold/blob/master/examples/jib/)
56+
See the [Skaffold-Jib demo project](https://github.com/GoogleContainerTools/skaffold/blob/main/examples/jib/)
5757
for an example.
5858

5959
### Multi-Module Projects

docs/content/en/docs/pipeline-stages/filesync.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ artifacts:
114114
Skaffold requires special collaboration from buildpacks for the `auto` sync to work.
115115

116116
Cloud Native Buildpacks set a `io.buildpacks.build.metadata` label on the images they create.
117-
This labels points to json description of the [Bill-of-Materials, aka BOM](https://github.com/buildpacks/spec/blob/master/buildpack.md#bill-of-materials-toml) of the build.
117+
This labels points to json description of the [Bill-of-Materials, aka BOM](https://github.com/buildpacks/spec/blob/main/buildpack.md#bill-of-materials-toml) of the build.
118118
In the BOM, under the `metadata.devmode.sync` key, Buildpacks that want to collaborate with Skaffold
119119
have to output the sync rules based on their exploration of the source and the build process they had to apply to it.
120120
Those sync rules will then be used by Skaffold without the user having to configure them manually.
@@ -127,7 +127,7 @@ signal to change the way the application is built so that it reloads the changes
127127

128128
Jib integration with Skaffold allows for zero-config `auto` sync. In this mode, Jib will sync your class files, resource files, and Jib's "extra directories" files to a remote container as changes are made. It can only be used with Jib in the default build mode (exploded) for non-WAR applications. It was primarily designed around [Spring Boot Developer Tools](https://docs.spring.io/spring-boot/docs/current/reference/html/using-spring-boot.html#using-boot-devtools), but can work with any embedded server that can reload/restart.
129129

130-
Check out the [Jib Sync example](https://github.com/GoogleContainerTools/skaffold/tree/master/examples/jib-sync) for more details.
130+
Check out the [Jib Sync example](https://github.com/GoogleContainerTools/skaffold/tree/main/examples/jib-sync) for more details.
131131

132132
## Limitations
133133

docs/content/en/docs/pipeline-stages/init.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ than 500MB.
2424
If there are multiple build configuration files, Skaffold will prompt you to pair your build configuration files
2525
with any images detected in your deploy configuration.
2626

27-
E.g. For an application with [two microservices](https://github.com/GoogleContainerTools/skaffold/tree/master/examples/microservices):
27+
E.g. For an application with [two microservices](https://github.com/GoogleContainerTools/skaffold/tree/main/examples/microservices):
2828

2929
```bash
3030
skaffold init
@@ -41,7 +41,7 @@ If this image is one you want Skaffold to build, you'll need to manually set up
4141
`skaffold` init also recognizes Maven and Gradle projects, and will auto-suggest the [`jib`]({{<relref "/docs/pipeline-stages/builders#/local#jib-maven-and-gradle">}}) builder.
4242
Currently `jib` artifact detection is disabled by default, but can be enabled using the flag `--XXenableJibInit`.
4343

44-
You can try this out on our example [jib project](https://github.com/GoogleContainerTools/skaffold/tree/master/examples/jib-multimodule)
44+
You can try this out on our example [jib project](https://github.com/GoogleContainerTools/skaffold/tree/main/examples/jib-multimodule)
4545

4646
```bash
4747
skaffold init --XXenableJibInit

docs/content/en/docs/pipeline-stages/log-tailing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Log Tailing is **disabled by default** for `run` mode; it can be enabled with th
1515

1616

1717
## Log Structure
18-
To view log structure, run `skaffold run --tail` in [`examples/microservices`](https://github.com/GoogleContainerTools/skaffold/tree/master/examples/microservices)
18+
To view log structure, run `skaffold run --tail` in [`examples/microservices`](https://github.com/GoogleContainerTools/skaffold/tree/main/examples/microservices)
1919

2020
```bash
2121
skaffold run --tail

docs/content/en/docs/references/api/grpc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ We also generate the [reference doc for the HTTP layer]({{<relref "/docs/referen
2323

2424
## v1/skaffold.proto
2525

26-
You can find the source for v1/skaffold.proto [on Github](https://github.com/GoogleContainerTools/skaffold/blob/master/proto/v1/v1/skaffold.proto).
26+
You can find the source for v1/skaffold.proto [on Github](https://github.com/GoogleContainerTools/skaffold/blob/main/proto/v1/v1/skaffold.proto).
2727

2828

2929

docs/content/en/docs/references/deprecation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ A "deprecation event" would coincide with a release.
2828
1. We document the deprecation in the following places if applicable
2929
1. deprecation policy - this document
3030
1. [Document on this site]({{< relref "/docs" >}}) changes in relevant sections
31-
1. [Release notes](https://github.com/GoogleContainerTools/skaffold/blob/master/CHANGELOG.md)
31+
1. [Release notes](https://github.com/GoogleContainerTools/skaffold/blob/main/CHANGELOG.md)
3232
1. [Command help]({{< relref "/docs/references/cli" >}})
3333
1. Log messages
3434
1. [skaffold yaml reference]({{< relref "/docs/references/yaml" >}})

docs/content/en/docs/resources/_index.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ a calendar invite will be sent to your Google Calendar.
2323

2424
## Contributing
2525

26-
See [Contributing Guide](https://github.com/GoogleContainerTools/skaffold/blob/master/CONTRIBUTING.md),
27-
[Developing Guide](https://github.com/GoogleContainerTools/skaffold/blob/master/DEVELOPMENT.md),
28-
and our [Code of Conduct](https://github.com/GoogleContainerTools/skaffold/blob/master/code-of-conduct.md)
26+
See [Contributing Guide](https://github.com/GoogleContainerTools/skaffold/blob/main/CONTRIBUTING.md),
27+
[Developing Guide](https://github.com/GoogleContainerTools/skaffold/blob/main/DEVELOPMENT.md),
28+
and our [Code of Conduct](https://github.com/GoogleContainerTools/skaffold/blob/main/code-of-conduct.md)
2929
on GitHub.
3030

3131
## Release Notes
3232

33-
See [Release Notes](https://github.com/GoogleContainerTools/skaffold/blob/master/CHANGELOG.md) on Github.
33+
See [Release Notes](https://github.com/GoogleContainerTools/skaffold/blob/main/CHANGELOG.md) on Github.
3434

3535
## Roadmap
3636

37-
See our roadmap [in GitHub](https://github.com/GoogleContainerTools/skaffold/blob/master/ROADMAP.md).
37+
See our roadmap [in GitHub](https://github.com/GoogleContainerTools/skaffold/blob/main/ROADMAP.md).

docs/content/en/docs/resources/telemetry/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The breakdown of data we collect is as follows:
2424
```bash
2525
skaffold dev -v trace --port-forward --cache-artifacts=false --filename=./skaffold.yaml
2626
```
27-
Running the above in the [microservices example](https://github.com/GoogleContainerTools/skaffold/tree/master/examples/microservices)
27+
Running the above in the [microservices example](https://github.com/GoogleContainerTools/skaffold/tree/main/examples/microservices)
2828
after a couple of builds/deploys results in the following metrics being collected:
2929
```json
3030
[{

docs/content/en/docs/tutorials/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ linkTitle: "Tutorials"
44
weight: 90
55
---
66

7-
See the [Github Examples page](https://github.com/GoogleContainerTools/skaffold/tree/master/examples) for examples.
7+
See the [Github Examples page](https://github.com/GoogleContainerTools/skaffold/tree/main/examples) for examples.
88

99
### Deploying examples to a remote cluster
1010

docs/content/en/docs/tutorials/artifact-dependencies.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ To learn more about how to set up Skaffold and a Kubernetes cluster, see the [qu
1313

1414
## Tutorial - Simple artifact dependency
1515

16-
This tutorial will be based on the [simple-artifact-dependency](https://github.com/GoogleContainerTools/skaffold/tree/master/examples/simple-artifact-dependency) example in our repository.
16+
This tutorial will be based on the [simple-artifact-dependency](https://github.com/GoogleContainerTools/skaffold/tree/main/examples/simple-artifact-dependency) example in our repository.
1717

1818

1919
## Adding an artifact dependency
@@ -30,7 +30,7 @@ The image alias `BASE` is now available as a build-arg in the Dockerfile for `ap
3030

3131
## Build and Deploy
3232

33-
In the [simple-artifact-dependency](https://github.com/GoogleContainerTools/skaffold/tree/master/examples/simple-artifact-dependency) directory, run:
33+
In the [simple-artifact-dependency](https://github.com/GoogleContainerTools/skaffold/tree/main/examples/simple-artifact-dependency) directory, run:
3434

3535
```text
3636
skaffold dev

0 commit comments

Comments
 (0)