Skip to content

Commit 9369b0a

Browse files
authored
Remove --devel from hybrid helm gitops (#775)
* Remove --devel from hybrid helm gitops Removed --devel flag * Remove --devel flags from helm gitops Removed from on-prem and upgrade
1 parent 13453ad commit 9369b0a

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

_docs/installation/gitops/hybrid-gitops-helm-installation.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ toc: true
1010
Install the Hybrid Runtime for GitOps through a Helm chart.
1111

1212
>**ATTENTION**:
13-
We have transitioned to a Helm-based installation for Hybrid GitOps Runtimes for improved experience and performance.
13+
We have transitioned to a Helm-based installation for Hybrid GitOps Runtimes for improved experience and performance, and is now the default Runtime for GitOps.
1414
The [CLI-based installation for Hybrid GitOps]({{site.baseurl}}/docs/installation/gitops/hybrid-gitops/) is now considered legacy.
1515
We will deprecate this installation mode permanently in the coming months. Please stay tuned for further updates and instructions, including the migration process.
1616

@@ -259,7 +259,7 @@ The table below lists the settings validated in the `values` file.
259259
where:
260260
* `<values_file>` is the name of the values.yaml used by the Helm installation.
261261
* `<namespace>` is the namespace in which to install the Hybrid GitOps runtime, either the default `codefresh`, or the custom name you intend to use for the installation. The Namespace must conform to the naming conventions for Kubernetes objects.
262-
* `<version>` is the version of the runtime to install. To target the latest pre-release version, use `--devel` instead of `--version <version>`.
262+
* `<version>` is the version of the runtime to install.
263263
1. Continue with [Step 2: Select Hybrid Runtime install option](#step-2-select-hybrid-runtime-install-option).
264264

265265
### Step 2: Select Hybrid Runtime install option
@@ -341,7 +341,6 @@ helm upgrade --install <helm-release-name> \
341341
--set global.codefresh.userToken.token=<codefresh-api-key> \
342342
--set global.runtime.name=<runtime-name> \
343343
<helm-repo-name>/gitops-runtime \
344-
--devel \
345344
--wait
346345
{% endhighlight %}
347346

@@ -358,7 +357,6 @@ helm upgrade --install <helm-release-name> \
358357
--set "global.runtime.ingress.hosts[0]"=<ingress-host> \
359358
--set global.runtime.ingress.className=<ingress-class> \
360359
<helm-repo-name>/gitops-runtime \
361-
--devel \
362360
--wait
363361
{% endhighlight %}
364362
<br>
@@ -374,7 +372,6 @@ helm upgrade --install <helm-release-name> \
374372
--set global.runtime.ingress.enabled=false \
375373
--set tunnel-client.enabled=false \
376374
<helm-repo-name>/gitops-runtime \
377-
--devel \
378375
--wait
379376
{% endhighlight %}
380377

_docs/installation/gitops/hybrid-gitops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ toc: true
1010
---
1111

1212
>**ATTENTION**:
13-
We have transitioned to a [Helm-based installation for Hybrid GitOps Runtimes]({{site.baseurl}}/docs/installation/gitops/hybrid-gitops-helm-installation/) for improved experience and performance.
13+
We have transitioned to a [Helm-based installation for Hybrid GitOps Runtimes]({{site.baseurl}}/docs/installation/gitops/hybrid-gitops-helm-installation/) for improved experience and performance, which is now the default for GitOps Runtimes.
1414
The CLI-based installation for Hybrid GitOps is now considered legacy.
1515
We will deprecate this installation mode permanently in the coming months. Please stay tuned for further updates and instructions, including the migration process.
1616

_docs/installation/gitops/monitor-manage-runtimes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ dependencies:
277277
```
278278
1. For non-GitOps Runtimes, do the following:
279279
1. Copy and run the upgrade command:
280-
`RELEASE_NAME=$(helm ls -n codefresh-gitops-runtime -q) && helm upgrade ${RELEASE_NAME} -n codefresh-gitops-runtime --devel`
280+
`RELEASE_NAME=$(helm ls -n codefresh-gitops-runtime -q) && helm upgrade ${RELEASE_NAME} -n codefresh-gitops-runtime`
281281
1. To exit the upgrade panel, click **Close**.
282282

283283

_docs/installation/gitops/on-prem-gitops-runtime-install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ helm upgrade --install cf-gitops-runtime \
2222
--set app-proxy.config.cors=<on-prem-url> \
2323
--set global.runtime.ingress.enabled="true" \
2424
--set "global.runtime.ingress.hosts[0]"=<ingress-host> \
25-
cf-gitops-runtime/gitops-runtime --devel
25+
cf-gitops-runtime/gitops-runtime
2626
{% endhighlight %}
2727

2828
where:

0 commit comments

Comments
 (0)