-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: prepare v1.29.4 release (#262)
* feat: prepare v1.29.4 release * feat: add missing releases * deps: revert kubectl to 1.29.3 * deps: use latest furyctl * docs: apply suggestions
- Loading branch information
1 parent
4abc5b5
commit b7da801
Showing
11 changed files
with
137 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ With no further ado, the steps to release a new version are: | |
1. `.drone.yaml` | ||
2. `tests/e2e-kfddistribution-*.yaml` | ||
3. `tests/e2e-kfddistribution-upgrades.sh` | ||
4. `tests/e2e/kfddistribution-upgrades/furyctl-init-cluster-1.29.3.yaml` | ||
4. `tests/e2e/kfddistribution-upgrades/furyctl-init-cluster-1.29.4.yaml` | ||
6. Update the documentation: | ||
1. `README.md` | ||
2. `docs/COMPATIBILITY_MATRIX.md` | ||
|
@@ -62,10 +62,10 @@ At this point, you'll need to switch to pushing some changes in furyctl | |
12. Update the compatibility unit tests with the new versions (`internal/distribution/compatibility_test.go`) | ||
13. Bump the version to the new `fury-distribution` go library that has been released as RC in step `7`. | ||
|
||
```bash | ||
go get -u github.com/sighupio/[email protected].3 | ||
go mod tidy | ||
``` | ||
```bash | ||
go get -u github.com/sighupio/[email protected].4 | ||
go mod tidy | ||
``` | ||
|
||
14. Tag a release candidate with the changes. This will be used in the e2e tests of the distribution. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
104 changes: 104 additions & 0 deletions
104
tests/e2e/kfddistribution-upgrades/furyctl-init-cluster-1.29.4.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
# Copyright (c) 2017-present SIGHUP s.r.l All rights reserved. | ||
# Use of this source code is governed by a BSD-style | ||
# license that can be found in the LICENSE file. | ||
|
||
--- | ||
apiVersion: kfd.sighup.io/v1alpha2 | ||
kind: KFDDistribution | ||
metadata: | ||
name: sighup | ||
spec: | ||
distributionVersion: v1.29.4 | ||
# This section describes how the KFD distribution will be installed | ||
distribution: | ||
kubeconfig: "{env://KUBECONFIG}" | ||
# This common configuration will be applied to all the packages that will be installed in the cluster | ||
common: {} | ||
# This section contains all the configurations for all the KFD core modules | ||
modules: | ||
networking: | ||
type: calico | ||
# This section contains all the configurations for the ingress module | ||
ingress: | ||
baseDomain: fury.sighup.cc | ||
nginx: | ||
type: single | ||
tls: | ||
provider: certManager | ||
certManager: | ||
clusterIssuer: | ||
name: letsencrypt-fury | ||
email: [email protected] | ||
type: http01 | ||
logging: | ||
type: loki | ||
minio: | ||
storageSize: 20Gi | ||
rootUser: | ||
username: sighup | ||
password: secretpassword1 | ||
monitoring: | ||
type: prometheus | ||
prometheus: | ||
resources: | ||
requests: | ||
cpu: 10m | ||
limits: | ||
cpu: 2000m | ||
memory: 6Gi | ||
tracing: | ||
type: none | ||
policy: | ||
type: kyverno | ||
kyverno: | ||
additionalExcludedNamespaces: ["local-path-storage"] | ||
validationFailureAction: enforce | ||
installDefaultPolicies: true | ||
dr: | ||
type: on-premises | ||
velero: {} | ||
auth: | ||
provider: | ||
type: basicAuth | ||
basicAuth: | ||
username: test | ||
password: testpassword | ||
# patches for kind compatibility and resource setting | ||
customPatches: | ||
patchesStrategicMerge: | ||
- | | ||
apiVersion: apps/v1 | ||
kind: StatefulSet | ||
metadata: | ||
name: minio-logging | ||
namespace: logging | ||
spec: | ||
template: | ||
spec: | ||
containers: | ||
- name: minio | ||
resources: | ||
requests: | ||
cpu: 10m | ||
memory: 50Mi | ||
- | | ||
$patch: delete | ||
apiVersion: logging-extensions.banzaicloud.io/v1alpha1 | ||
kind: HostTailer | ||
metadata: | ||
name: systemd-common | ||
namespace: logging | ||
- | | ||
$patch: delete | ||
apiVersion: logging-extensions.banzaicloud.io/v1alpha1 | ||
kind: HostTailer | ||
metadata: | ||
name: systemd-etcd | ||
namespace: logging | ||
- | | ||
$patch: delete | ||
apiVersion: apps/v1 | ||
kind: DaemonSet | ||
metadata: | ||
name: x509-certificate-exporter-control-plane | ||
namespace: monitoring |