Skip to content

Commit b2182fc

Browse files
authored
set skipValidation: true for now (#54)
* set `skipValidation: true` for now
1 parent 8e02655 commit b2182fc

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

charts/gitops-runtime/Chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
appVersion: 0.1.30
33
description: A Helm chart for Codefresh gitops runtime
44
name: gitops-runtime
5-
version: 0.2.10-alpha
5+
version: 0.2.11-alpha
66
home: https://github.com/codefresh-io/gitops-runtime-helm
77
icon: https://avatars1.githubusercontent.com/u/11412079?v=3
88
keywords:
@@ -15,8 +15,8 @@ annotations:
1515
artifacthub.io/alternativeName: "codefresh-gitops-runtime"
1616
artifacthub.io/prerelease: "true"
1717
artifacthub.io/changes: |
18-
- kind: added
19-
description: pre-install hook to valide values - fails installation quickly in case anything is wrong or missing
18+
- kind: changed
19+
description: pre-install hook is now skipped by default, due to a bug. will be fixed and re-enabled shortly.
2020
dependencies:
2121
- name: argo-cd
2222
repository: https://codefresh-io.github.io/argo-helm

charts/gitops-runtime/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Codefresh gitops runtime
2-
![Version: 0.2.10-alpha](https://img.shields.io/badge/Version-0.2.10--alpha-informational?style=flat-square) ![AppVersion: 0.1.30](https://img.shields.io/badge/AppVersion-0.1.30-informational?style=flat-square)
2+
![Version: 0.2.11-alpha](https://img.shields.io/badge/Version-0.2.11--alpha-informational?style=flat-square) ![AppVersion: 0.1.30](https://img.shields.io/badge/AppVersion-0.1.30-informational?style=flat-square)
33

44
## Codefresh official documentation:
55
Prior to running the installation please see the official documentation at: https://codefresh.io/docs/docs/installation/gitops/hybrid-gitops-helm-installation/
@@ -15,7 +15,7 @@ We have created a helper utility to resolve this issue:
1515
The utility is packaged in a container image. Below are instructions on executing the utility using Docker:
1616

1717
```
18-
docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.2.10-alpha <local_registry>
18+
docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.2.11-alpha <local_registry>
1919
```
2020
`output_dir` - is a local directory where the utility will output files. <br>
2121
`local_registry` - is your local registry where you want to mirror the images to
@@ -157,8 +157,8 @@ The utility will output 4 files into the folder:
157157
| global.runtime.ingress.protocol | string | `"https"` | The protocol that Codefresh platform will use to access the runtime ingress. Can be http or https. |
158158
| global.runtime.ingressUrl | string | `""` | Explicit url for runtime ingress. Provide this value only if you don't want the chart to create and ingress (global.runtime.ingress.enabled=false) and tunnel-client is not used (tunnel-client.enabled=false) |
159159
| global.runtime.name | string | `nil` | Runtime name. Must be unique per platform account. |
160-
| installer | object | `{"image":{"pullPolicy":"IfNotPresent","repository":"quay.io/codefresh/gitops-runtime-installer","tag":""},"skipValidation":false}` | Runtime installer used for running hooks and checks on the release |
161-
| installer.skipValidation | bool | `false` | if set to true, pre-install hook will *not* run |
160+
| installer | object | `{"image":{"pullPolicy":"IfNotPresent","repository":"quay.io/codefresh/gitops-runtime-installer","tag":""},"skipValidation":true}` | Runtime installer used for running hooks and checks on the release |
161+
| installer.skipValidation | bool | `true` | if set to true, pre-install hook will *not* run |
162162
| internal-router.affinity | object | `{}` | |
163163
| internal-router.env | object | `{}` | Environment variables - see values.yaml inside the chart for usage |
164164
| internal-router.fullnameOverride | string | `"internal-router"` | |

charts/gitops-runtime/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ global:
100100
# -- Runtime installer used for running hooks and checks on the release
101101
installer:
102102
# -- if set to true, pre-install hook will *not* run
103-
skipValidation: false
103+
skipValidation: true
104104
image:
105105
repository: quay.io/codefresh/gitops-runtime-installer
106106
tag: ""

0 commit comments

Comments
 (0)