From 4741e97c19517a9ae718c804a9e046b568caa52a Mon Sep 17 00:00:00 2001 From: Jan Dubois Date: Fri, 2 Oct 2020 15:33:04 -0700 Subject: [PATCH 1/6] Remove allowance for old catapult cruft --- chart/values.schema.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/chart/values.schema.yaml b/chart/values.schema.yaml index ff819d6b51..55ab64b3ca 100644 --- a/chart/values.schema.yaml +++ b/chart/values.schema.yaml @@ -332,8 +332,7 @@ properties: default: {"$ref": "#/definitions/string_or_null"} additionalProperties: false storage_class: {"$ref": "#/definitions/string_or_null"} - # XXX Catapult sets additional (unused) properties; allow them for now to pass CI - additionalProperties: true + additionalProperties: false move_jobs: type: object From 1210afd9f32ee3881cbd61aa3a2394f82b663b6a Mon Sep 17 00:00:00 2001 From: Jaime Gomes Date: Sat, 3 Oct 2020 14:12:57 +0200 Subject: [PATCH 2/6] fix: link to the new kubecf docs domain --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5c806b8af4..6242e4742e 100644 --- a/README.md +++ b/README.md @@ -17,11 +17,11 @@ It works with the [cf-operator] from [Project Quarks] to deploy and manage relea [cf-operator]: https://github.com/cloudfoundry-incubator/cf-operator/ [Project Quarks]: https://www.cloudfoundry.org/project-quarks/ [cf-deployment]: https://github.com/cloudfoundry/cf-deployment/ -[Docs]: https://kubecf.suse.dev/ +[Docs]: https://kubecf.io/ ## Documentation -The Community documentation website is [available here](https://kubecf.suse.dev/). +The Community documentation website is [available here](https://kubecf.io/). ## Contributing to KubeCF development From bee8066ce227e86828e3d604ab0c5bfe063acbad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Cuadrado=20Juan?= Date: Mon, 5 Oct 2020 10:42:54 +0200 Subject: [PATCH 3/6] Bump catapult on Concourse CI Unblocks https://github.com/cloudfoundry-incubator/kubecf/pull/1430 --- .concourse/pipeline.yaml.gomplate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.concourse/pipeline.yaml.gomplate b/.concourse/pipeline.yaml.gomplate index a5b5b7525f..2e3a428ce9 100644 --- a/.concourse/pipeline.yaml.gomplate +++ b/.concourse/pipeline.yaml.gomplate @@ -120,7 +120,7 @@ resources: source: uri: https://github.com/SUSE/catapult version: - ref: d3a8e6d14a8c0c0113cb161bca1fe42020ae7849 + ref: ce4005186f6e1d94923ded32e54241ecba6b2f9e - name: s3.kubecf-ci type: s3 From 6279fbf071ea52c350d2f82187ce272afb89e97a Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Mon, 5 Oct 2020 11:22:59 +0200 Subject: [PATCH 4/6] fix: update doc links in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5c806b8af4..6242e4742e 100644 --- a/README.md +++ b/README.md @@ -17,11 +17,11 @@ It works with the [cf-operator] from [Project Quarks] to deploy and manage relea [cf-operator]: https://github.com/cloudfoundry-incubator/cf-operator/ [Project Quarks]: https://www.cloudfoundry.org/project-quarks/ [cf-deployment]: https://github.com/cloudfoundry/cf-deployment/ -[Docs]: https://kubecf.suse.dev/ +[Docs]: https://kubecf.io/ ## Documentation -The Community documentation website is [available here](https://kubecf.suse.dev/). +The Community documentation website is [available here](https://kubecf.io/). ## Contributing to KubeCF development From 7e84ecfa41f7ba8031a6a69db6cb00679a06da48 Mon Sep 17 00:00:00 2001 From: CFContainerizationBot Date: Mon, 5 Oct 2020 14:41:25 +0000 Subject: [PATCH 5/6] feat: bump cf-operator https://s3.amazonaws.com/cf-operators/release/helm-charts/cf-operator-6.1.10%2B0.g7b1a5f2f.tgz 6.1.10%2B0.g7b1a5f2f --- dependencies.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dependencies.yaml b/dependencies.yaml index 8dbbff29af..cfe2bfa0f3 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -103,9 +103,9 @@ binaries: # Additional files we need to download; see http_file() invocation in WORKSPACE. external_files: cf_operator: - sha256: 5805ddfe34d626f3b068abc0d1f897ec756269308e6a5d2aedf212378500c220 + sha256: b9681197c6e53d115396c5e837a5dbb0fa2c3c26d89cb3e274e3d026a846f6f6 url: https://s3.amazonaws.com/cf-operators/release/helm-charts/cf-operator-{version}.tgz - version: 6.1.8%2B0.g2821133a + version: 6.1.10%2B0.g7b1a5f2f kube_dashboard: sha256: f849252870818a2971dfc3c4f8a8c5f58a57606bc2b5f221d7ab693e1d1190e0 url: https://raw.githubusercontent.com/kubernetes/dashboard/{version}/aio/deploy/recommended.yaml From 9ac73506ae9888d59e5487f3a69395198fd23e94 Mon Sep 17 00:00:00 2001 From: Jan Dubois Date: Mon, 5 Oct 2020 12:25:10 -0700 Subject: [PATCH 6/6] Trigger CI