Commit Graph

100 Commits (c575465c6cb22c952c965636d7bbcfc787b2ff03)

Author SHA1 Message Date
actions 97ae6751be Merge pull request #64 from manuelbuil/dual-stack
Allow users to deploy Cilium with dual stack config
2021-04-12 17:29:29 +00:00
actions 5a19d7712b Merge pull request #46 from jcaamano/main-source
Add cilium chart
2021-04-08 15:00:15 +00:00
actions b4655b7a1b update kube-proxy version to v1.20.5-build20210405
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
2021-04-06 17:18:45 +00:00
actions a79f4561c7 Strip 'nginx-' prefix from image tags when using semverCompare (#62)
* Revert rke2-ingress-nginx to 1.36.3
* Add trimPrefix calls to rke2-ingress-nginx daemonset manifest
* Add trimPrefix call to rke2-ingress-nginx deployment with defaultBackend disabled

Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
2021-04-05 22:48:54 +00:00
David Nuzik 6e3d2fa779
Merge pull request #60 from aiyengar2/bump_scripts_0_1_0_live
[Live] Bump scripts to v0.1.0
2021-04-05 10:17:27 -07:00
actions 5b1760854a update kube-proxy version to v1.18.17 (#61) 2021-03-18 22:15:45 +00:00
actions 14cfd5e968 update kube-proxy version to v1.19.9 (#58) 2021-03-18 21:56:45 +00:00
Arvind Iyengar 5bb434ac78
make docs 2021-03-18 14:51:22 -07:00
Arvind Iyengar dfd500cbd4
Bump scripts version to v0.1.0 2021-03-18 14:51:14 -07:00
actions 710989afd7 update kube-proxy version to v1.20.5 (#57) 2021-03-18 21:40:46 +00:00
actions e8b0ba75b9 Merge pull request #56 from brandond/fix_682
Update flexvol path
2021-03-10 21:22:09 +00:00
actions 78f24070f9 Update kube-proxy chart to v1.20.4-build20210302
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
2021-03-02 20:23:25 +00:00
actions cd2db0801e Merge pull request #52 from aiyengar2/migrate-source
[Source] Migrate to charts-build-scripts
2021-03-02 00:27:49 +00:00
Jacob Blain Christen 1277f5bc80
Merge pull request #53 from aiyengar2/migrate-live
[Live] Migrate to charts-build-scripts
2021-03-01 17:26:00 -07:00
Arvind Iyengar 035cb2b0be
remove executable permissions 2021-03-01 11:21:09 -08:00
Arvind Iyengar 5ba341da06
Revert "Temporarily point to fork"
This reverts commit 4ecd0f7203.

Context:

The purpose behind introducing the previous two change was to run a `make sync`, which tries to pull in new charts *only* from the source branch. This step would fail if the packageVersion was not modified.

This worked, as seen below:

```bash
arvindiyengar: ~/Rancher/rke2-charts/src/github.com/rancher/rke2-charts
$ make sync
./bin/charts-build-scripts sync
INFO[0000] Synchronizing with charts that will be generated from migrate-source
... (omitted for brevity) ...
INFO[0002] Found the following latest release candidate versions: {
 "rke2-canal/v3.13.300-build2021022301": "rke2-canal/v3.13.300-build2021022301-rc00",
 "rke2-coredns/1.10.101-build2021022302": "rke2-coredns/1.10.101-build2021022302-rc00",
 "rke2-ingress-nginx/3.3.001": "rke2-ingress-nginx/3.3.001-rc00",
 "rke2-kube-proxy/v1.19.801": "rke2-kube-proxy/v1.19.801-rc00",
 "rke2-metrics-server/2.11.100-build2021022301": "rke2-metrics-server/2.11.100-build2021022301-rc00"
}
... (omitted for brevity) ...
INFO[0003] Sync was successful!
INFO[0003] Successfully synchronized with migrate-source!
INFO[0003] Creating or updating the Helm index with the newly added assets...
INFO[0003] Your working directory is ready for a commit.
```
2021-02-25 18:51:14 -08:00
Arvind Iyengar 3d34983ce4
Revert "test make sync"
This reverts commit 6c7ccf3113.
2021-02-25 18:50:59 -08:00
Arvind Iyengar 6c7ccf3113
test make sync 2021-02-25 18:50:18 -08:00
Arvind Iyengar 4ecd0f7203
Temporarily point to fork 2021-02-25 18:32:13 -08:00
Arvind Iyengar 5e6287c3a9
Rename chart rke2-canal-v3.13.300-build20210223
This seems to be an issue with the regenerate-assets script, most likely introduced due to the weird naming scheme for this chart which was allowed in the old build scripts.

The new build scripts expects the chart version to always end with the packageVersion, e.g. this should be `rke2-canal-v3.13.3-build2021022300`, but since this is already released I'm not going to tamper with it.

Signed-off-by: Arvind Iyengar <arvind.iyengar@rancher.com>
2021-02-25 18:05:35 -08:00
Arvind Iyengar cd9d2ae6ab
Migrate all assets
Just needed to run:
```bash
$ find assets -maxdepth 1 -mindepth 1 -type d -exec rm -rf {} \;
$ find charts -maxdepth 1 -mindepth 1 -type d -exec rm -rf {} \;
$ REPOSITORY=https://github.com/rancher/rke2-charts BRANCH=main ./scripts/regenerate-assets
```

Signed-off-by: Arvind Iyengar <arvind.iyengar@rancher.com>
2021-02-25 18:03:02 -08:00
Arvind Iyengar cecc18cf67
Fixup bug with regenerate-assets
Will be tracked in https://github.com/rancher/charts-build-scripts/pull/19

Signed-off-by: Arvind Iyengar <arvind.iyengar@rancher.com>
2021-02-25 17:55:19 -08:00
Arvind Iyengar 74c4feb591
Initialize template, fix, and re-run make docs
1. Ran the following script to initialize
```
arvindiyengar: ~/Rancher/rke2-charts/src/github.com/rancher/rke2-charts
$ curl -s https://raw.githubusercontent.com/aiyengar2/charts-build-scripts/add_init_steps/init.sh > /dev/null | sh
Pulling in charts-build-scripts version v0.0.4
charts-build-scripts version v0.0.4 (567c991)
INFO[0000] Pulling rancher/charts-build-scripts[path=templates] from upstream into templates436707958
INFO[0002] Successfully pulled new updated docs into working directory.
Pulled in basic template for live into configuration.yaml and constructed charts directory
Next Steps:
1. Modify the configuration.yaml with your expected setup and re-run make docs to automatically update the repository.
arvindiyengar: ~/Rancher/rke2-charts/src/github.com/rancher/rke2-charts
$ make docs
./bin/charts-build-scripts docs
INFO[0000] Pulling rancher/charts-build-scripts[path=templates] from upstream into templates174667530
INFO[0002] Successfully pulled new updated docs into working directory.
```
2. Updated the configuration.yaml to point at rke2-charts manually
3. Ran `make docs`

Signed-off-by: Arvind Iyengar <arvind.iyengar@rancher.com>
2021-02-25 17:55:19 -08:00
Arvind Iyengar 934992a461
Drop sha256sums and README.md
Signed-off-by: Arvind Iyengar <arvind.iyengar@rancher.com>
2021-02-25 17:55:13 -08:00
actions fb74992a07 Generated changes 2021-02-24 21:42:03 +00:00
actions e037e684bb Generated changes 2021-02-24 21:41:49 +00:00
actions 88f4f963aa Generated changes 2021-02-19 17:03:50 +00:00
actions 664ccdc455 Generated changes 2021-02-19 16:11:28 +00:00
actions b586e92311 Generated changes 2021-01-25 23:01:12 +00:00
actions f0df0c81cd Generated changes 2021-01-22 21:48:26 +00:00
actions 8dad34851d Generated changes 2021-01-22 21:35:46 +00:00
actions 194117f3e0 Generated changes 2021-01-14 19:58:07 +00:00
actions cf5667615a Generated changes 2021-01-14 18:05:31 +00:00
actions d6594f5066 Generated changes 2021-01-13 00:41:56 +00:00
actions 81b3b2da1c Generated changes 2021-01-09 00:58:33 +00:00
actions 583b0be509 Generated changes 2021-01-08 18:12:00 +00:00
actions 53359f1ab1 Generated changes 2020-12-17 19:20:49 +00:00
actions 3b956536cf Generated changes 2020-12-17 00:41:06 +00:00
actions 7e134078c2 Generated changes 2020-12-14 23:50:53 +00:00
actions f5f1dc51bc Generated changes 2020-12-14 21:50:42 +00:00
actions e1dc869b09 Generated changes 2020-12-12 00:22:50 +00:00
actions 9be2bb4478 Generated changes 2020-12-12 00:03:09 +00:00
actions 56eed43262 Generated changes 2020-12-11 21:02:07 +00:00
actions a3b99bffb6 Generated changes 2020-12-10 22:07:42 +00:00
actions 5d0e07ab1d Generated changes 2020-12-07 21:17:35 +00:00
actions fe1a44fb19 Generated changes 2020-11-16 17:06:16 +00:00
actions f5549999e3 Generated changes 2020-10-15 22:21:23 +00:00
actions 7e4c9729f0 Generated changes 2020-10-14 23:04:28 +00:00
actions 1dfd69bb55 Generated changes 2020-09-29 00:14:59 +00:00
Daishan c64cf225bb Initial commit 2020-09-28 17:07:45 -07:00