File tree Expand file tree Collapse file tree 8 files changed +248
-67
lines changed Expand file tree Collapse file tree 8 files changed +248
-67
lines changed Original file line number Diff line number Diff line change 1
- VERSION =v0.0.338
1
+ VERSION =v0.0.339
2
2
3
3
OUT_DIR =dist
4
4
YEAR? =$(shell date +"% Y")
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ cli-v2 runtime install [runtime_name] [flags]
32
32
--demo-resources Installs demo resources (default: true) (default true)
33
33
--disable-rollback If true, will not perform installation rollback after a failed installation
34
34
--disable-telemetry If true, will disable the analytics reporting for the installation process
35
+ --from-repo Installs a runtime from an existing repo. Used for recovery after cluster failure
35
36
-t, --git-token string Your git provider api token [GIT_TOKEN]
36
37
-u, --git-user string Your git provider user name [GIT_USER] (not required in GitHub)
37
38
-h, --help help for install
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ cf version
23
23
24
24
``` bash
25
25
# download and extract the binary
26
- curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.338 /cf-linux-amd64.tar.gz | tar zx
26
+ curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.339 /cf-linux-amd64.tar.gz | tar zx
27
27
28
28
# move the binary to your $PATH
29
29
mv ./cf-linux-amd64 /usr/local/bin/cf
@@ -36,7 +36,7 @@ cf version
36
36
37
37
``` bash
38
38
# download and extract the binary
39
- curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.338 /cf-darwin-amd64.tar.gz | tar zx
39
+ curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.339 /cf-darwin-amd64.tar.gz | tar zx
40
40
41
41
# move the binary to your $PATH
42
42
mv ./cf-darwin-amd64 /usr/local/bin/cf
Original file line number Diff line number Diff line change 4
4
5
5
require (
6
6
github.com/Masterminds/semver/v3 v3.1.1
7
- github.com/argoproj-labs/argocd-autopilot v0.3.6
7
+ github.com/argoproj-labs/argocd-autopilot v0.3.7
8
8
github.com/argoproj/applicationset v0.4.1
9
9
github.com/argoproj/argo-cd/v2 v2.3.3
10
10
github.com/argoproj/argo-events v0.17.1-0.20220327045437-70eaafe9afec
Original file line number Diff line number Diff line change @@ -152,8 +152,8 @@ github.com/antonmedv/expr v1.9.0/go.mod h1:5qsM3oLGDND7sDmQGDXHkYfkjYMUX14qsgqmH
152
152
github.com/apache/thrift v0.12.0 /go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ =
153
153
github.com/apache/thrift v0.13.0 /go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ =
154
154
github.com/appscode/go v0.0.0-20190808133642-1d4ef1f1c1e0 /go.mod h1:iy07dV61Z7QQdCKJCIvUoDL21u6AIceRhZzyleh2ymc =
155
- github.com/argoproj-labs/argocd-autopilot v0.3.6 h1:7/1oq/YVCqPMPpGJ9zFK3GEI4G5tZFI5ZgqGf8YucsE =
156
- github.com/argoproj-labs/argocd-autopilot v0.3.6 /go.mod h1:KFbmBBjYrK355/0iXYoLAbNt0TaomSlKrUWda+KVlAw =
155
+ github.com/argoproj-labs/argocd-autopilot v0.3.7 h1:7GAWOvgWh93wTcoMHkafVwQTtZKDDokU7z+DUq0frvI =
156
+ github.com/argoproj-labs/argocd-autopilot v0.3.7 /go.mod h1:KFbmBBjYrK355/0iXYoLAbNt0TaomSlKrUWda+KVlAw =
157
157
github.com/argoproj/applicationset v0.4.1 h1:PzTn77TK7XQB3CdpCDPbwU4pQgip0x4qvuJQ8XiBk5E =
158
158
github.com/argoproj/applicationset v0.4.1 /go.mod h1:cJZ7CWG80kBII4QNalyAvSr8eVifo8jKkyXoVl9qXaA =
159
159
github.com/argoproj/argo-cd/v2 v2.3.3 h1:SE1Cb8MDqP5T2iUtyL9bwpKYIvpGkVUsgzKCAqZZ5Vc =
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ metadata:
5
5
namespace : " {{ namespace }}"
6
6
spec :
7
7
defVersion : 1.0.1
8
- version : 0.0.338
8
+ version : 0.0.339
9
9
bootstrapSpecifier : github.com/codefresh-io/cli-v2/manifests/argo-cd
10
10
components :
11
11
- name : events
Original file line number Diff line number Diff line change @@ -84,7 +84,8 @@ const (
84
84
InstallStepCreateRuntimeOnPlatform CliStep = "install.run.step.create-runtime-on-platform"
85
85
InstallStepBootstrapRepo CliStep = "install.run.step.bootstrap-repo"
86
86
InstallStepCreateProject CliStep = "install.run.step.create-project"
87
- InstallStepCreateConfigMap CliStep = "install.run.step.create-codefresh-cm"
87
+ InstallStepCreateOrUpdateConfigMap CliStep = "install.run.step.create-or-update-codefresh-cm"
88
+ InstallStepApplySecretsToCluster CliStep = "install.run.step.apply-secrets-to-cluster"
88
89
InstallStepCreateComponents CliStep = "install.run.step.create-components"
89
90
InstallStepInstallComponenets CliStep = "install.run.step.install-components"
90
91
InstallStepCreateGitsource CliStep = "install.run.step.create-gitsource"
You can’t perform that action at this time.
0 commit comments