Skip to content

Commit 7018ee2

Browse files
authored
re-enabled pre-install hook by default (#55)
bumped cli-v2 to 0.1.49
1 parent b2182fc commit 7018ee2

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

charts/gitops-runtime/Chart.yaml

+2-2
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.11-alpha
5+
version: 0.2.12-alpha
66
home: https://github.com/codefresh-io/gitops-runtime-helm
77
icon: https://avatars1.githubusercontent.com/u/11412079?v=3
88
keywords:
@@ -16,7 +16,7 @@ annotations:
1616
artifacthub.io/prerelease: "true"
1717
artifacthub.io/changes: |
1818
- kind: changed
19-
description: pre-install hook is now skipped by default, due to a bug. will be fixed and re-enabled shortly.
19+
description: re-enabled pre-install hook by default, after validation code was fixed.
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.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)
2+
![Version: 0.2.12-alpha](https://img.shields.io/badge/Version-0.2.12--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.11-alpha <local_registry>
18+
docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.2.12-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":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 |
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 |
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: true
103+
skipValidation: false
104104
image:
105105
repository: quay.io/codefresh/gitops-runtime-installer
106106
tag: ""

installer-image/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM --platform=$BUILDPLATFORM debian:bullseye-slim
22

3-
ARG CF_CLI_VERSION=v0.1.48
3+
ARG CF_CLI_VERSION=v0.1.49
44
ARG KUBECTL_VERSION=v1.27.2
55
ARG TARGETARCH
66

0 commit comments

Comments
 (0)