You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/developing.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ make binaries
19
19
If you encounter a build error for the containers which looks like this:
20
20
21
21
```log
22
-
> [builder 7/15] RUN go mod download:
22
+
> [builder 7/15] RUN go mod download:
23
23
#15 20.58 go mod download: github.com/weaveworks/[email protected]: invalid version: git ls-remote -q origin in /go/pkg/mod/cache/vcs/2d85ed3446e0807d78000711febc8f5eeb93fa1a010e290025afb84defca1ae6: exit status 128:
24
24
#15 20.58 remote: Invalid username or password.
25
25
#15 20.58 fatal: Authentication failed for 'https://github.com/weaveworks/weave-gitops-enterprise-credentials/'
@@ -96,7 +96,7 @@ Run the server:
96
96
export KUBECONFIG=test-server-kubeconfig
97
97
98
98
# The weave-gitops core library uses an embedded Flux. That's not going to work when used as a library though
99
-
# so we need to tell it to use a different Flux. This is also done by the cluster-service deployment.
99
+
# so we need to tell it to use a different Flux. This is also done by the cluster-service deployment.
100
100
WEAVE_GITOPS_FLUX_BIN_PATH=`which flux`
101
101
102
102
# Run the server configured using lots of env vars
@@ -226,7 +226,7 @@ The private ssh key to the server lives in the `pesto test cluster ssh key` secr
226
226
227
227
2. Update the deployed version on the test cluster
228
228
229
-
1. As of writing the `HelmRelease` lives in [management/weave-gitops-enterprise/artifacts/mccp-chart/helm-chart/HelmRelease.yaml](https://github.com/wkp-example-org/capd-demo-simon/blob/main/management/weave-gitops-enterprise/artifacts/mccp-chart/helm-chart/HelmRelease.yaml), but may have moved, so look around for the helm-release file if this has gone missing.
229
+
1. As of writing the `HelmRelease` lives in [.weave-gitops/clusters/kind-kind/system/weave-gitops-enterprise.yaml](https://github.com/wkp-example-org/capd-demo-simon/blob/main/.weave-gitops/clusters/kind-kind/system/weave-gitops-enterprise.yaml), but may have moved, so look around for the helm-release file if this has gone missing.
230
230
2. Find the `spec.chart.spec.version` field and change it to the desired value.
231
231
3. If this is an official release (`0.0.9` etc) make sure the release repo is set:
Copy file name to clipboardExpand all lines: docs/releasing.md
+6-8Lines changed: 6 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,12 @@
4
4
5
5
How to release a new version of weave-gitops-enterprise
6
6
7
+
## Prerequisites
8
+
9
+
Install [GnuPG](https://gnupg.org/) and [generate a GPG key and add it to your Github account](https://docs.github.com/en/authentication/managing-commit-signature-verification/generating-a-new-gpg-key).
10
+
11
+
If you aren't using the GPG suite, you will need to [add the GPG key to your .bashrc / .zshrc](https://docs.github.com/en/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key).
12
+
7
13
## Create a tag
8
14
9
15
_This may be possible by creating a tag via the releases system in the github UI, please test and update here._
@@ -16,11 +22,3 @@ git push origin v0.0.6
16
22
```
17
23
18
24
CircleCI will build the new release based on the new tag.
19
-
20
-
## Create a release in GitHub
21
-
22
-
- Go to the **Releases page** for the weave-gitops repository
23
-
- Click on **Draft a New Release**
24
-
- Add the tag you just pushed
25
-
- Add some release notes. It would be nice to automate this in the future. Its probably easiest to copy the last release as a template and then modify the list of _fixes_ and _new features_.
0 commit comments