Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit52ed815

Browse files
authored
Classic typed version updates (codefresh-io#907)
* Add version numbers to typed stepsAdded latest version numbers to typed steps in examples* Add versions to typed stepsAdded latest versions to typed steps and removed version from pending-approval step types* Update steps.md
1 parent2e2510f commit52ed815

File tree

26 files changed

+140
-83
lines changed

26 files changed

+140
-83
lines changed

‎_docs/ci-cd-guides/environment-deployments.md‎

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ steps:
167167
registry: dockerhub
168168
deployStaging:
169169
title: Deploying to Staging
170-
type: helm
170+
type: helm:1.1.12
171171
stage: deployment
172172
working_directory: ./helm-promotion-sample-app
173173
arguments:
@@ -185,7 +185,7 @@ steps:
185185
- master
186186
deployProd:
187187
title: Deploying to Production
188-
type: helm
188+
type: helm:1.1.12
189189
stage: deployment
190190
working_directory: ./helm-promotion-sample-app
191191
arguments:
@@ -332,7 +332,7 @@ steps:
332332
registry: dockerhub
333333
deployStaging:
334334
title: Deploying to Staging
335-
type: helm
335+
type: helm:1.1.12
336336
stage: deployment
337337
working_directory: ./helm-promotion-sample-app
338338
arguments:
@@ -360,7 +360,7 @@ steps:
360360
releaseName: example-staging
361361
deployProd:
362362
title: Deploying to Production
363-
type: helm
363+
type: helm:1.1.12
364364
stage: deployment
365365
working_directory: ./helm-promotion-sample-app
366366
arguments:
@@ -456,7 +456,7 @@ steps:
456456
registry: dockerhub
457457
deployStaging:
458458
title: Deploying to Staging
459-
type: helm
459+
type: helm:1.1.12
460460
stage: staging
461461
working_directory: ./helm-promotion-sample-app
462462
arguments:
@@ -474,7 +474,7 @@ steps:
474474
title: Deploy to production?
475475
deployProd:
476476
title: Deploying to Production
477-
type: helm
477+
type: helm:1.1.12
478478
stage: prod
479479
working_directory: ./helm-promotion-sample-app
480480
arguments:
@@ -564,7 +564,7 @@ steps:
564564

565565
deployStaging:
566566
title: Deploying to Staging
567-
type: helm
567+
type: helm:1.1.12
568568
stage: staging
569569
working_directory: ./helm-promotion-sample-app
570570
arguments:
@@ -639,7 +639,7 @@ steps:
639639
- 8080
640640
deployProd:
641641
title: Deploying to Production
642-
type: helm
642+
type: helm:1.1.12
643643
stage: prod
644644
working_directory: ./helm-promotion-sample-app
645645
arguments:

‎_docs/ci-cd-guides/gitops-deployments.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ steps:
130130

131131
ReportImageMetadataAll:
132132
title: Report image to Codefresh CD
133-
type: codefresh-report-image
133+
type: codefresh-report-image:1.0.10
134134
working_directory: /code
135135
stage: "report"
136136
arguments:

‎_docs/ci-cd-guides/preview-environments.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ steps:
199199
stage: "deploy"
200200
deploy:
201201
title: Deploying Helm Chart
202-
type: helm
202+
type: helm:1.1.12
203203
stage: deploy
204204
working_directory: ./unlimited-test-environments-manifests
205205
arguments:
@@ -298,7 +298,7 @@ version: "1.0"
298298
steps:
299299
delete_app:
300300
title: Delete app
301-
type: helm
301+
type: helm:1.1.12
302302
arguments:
303303
action: auth
304304
helm_version: 3.2.4

‎_docs/ci-cd-guides/progressive-delivery.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ steps:
196196
- KUBERNETES_NAMESPACE=blue-green
197197
wait_for_new_color:
198198
fail_fast: false
199-
type: pending-approval
199+
type: pending-approval:1.0.2
200200
title: Is the new color ok?
201201
stage: deploy
202202
promote_color:
@@ -591,7 +591,7 @@ steps:
591591
-KUBERNETES_NAMESPACE=canary
592592
check_canary_10:
593593
fail_fast:false
594-
type:pending-approval
594+
type:pending-approval:1.0.2
595595
title:Is canary ok?
596596
stage:'canary 10%'
597597
promote_canary_33:
@@ -630,7 +630,7 @@ steps:
630630
-denied
631631
check_canary_33:
632632
fail_fast:false
633-
type:pending-approval
633+
type:pending-approval:1.0.2
634634
title:Is canary ok?
635635
stage:'canary 33%'
636636
promote_canary_full:

‎_docs/deployments/helm/using-helm-in-codefresh-pipeline.md‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ The example below illustrates how to provide variables as part of the Helm step
128128

129129
```yaml
130130
deploy:
131-
type:helm
131+
type:helm:1.1.12
132132
arguments:
133133
action:install
134134
chart_name:test_chart
@@ -202,7 +202,7 @@ The following example includes the minimum configuration to install a Helm chart
202202

203203
```yaml
204204
deploy:
205-
type: helm
205+
type: helm:1.1.12
206206
arguments:
207207
action: install
208208
chart_name: /home/user/charts/mywebapp
@@ -217,7 +217,7 @@ The following example illustrates how to package and push a Helm chart into a re
217217

218218
```yaml
219219
deploy:
220-
type: helm
220+
type: helm:1.1.12
221221
arguments:
222222
action: push
223223
chart_name: /codefresh/volume/repo/chart
@@ -235,7 +235,7 @@ The following example illustrates the Helm mode for authentication only.
235235

236236
```yaml
237237
deploy:
238-
type: helm
238+
type: helm:1.1.12
239239
arguments:
240240
action: auth
241241
kube_context: my-kubernetes-context
@@ -251,7 +251,7 @@ The following example illustrates executing custom Helm commands.
251251
{% highlight yaml %}
252252
{% raw %}
253253
my_custom_helm_command:
254-
type:helm
254+
type:helm:1.1.12
255255
arguments:
256256
action:auth
257257
kube_context:my-kubernetes-context
@@ -352,15 +352,15 @@ steps:
352352
-python setup.py test
353353
StoreChart:
354354
title:Storing Helm Chart
355-
type:helm
355+
type:helm:1.1.12
356356
stage:store
357357
working_directory:./python-flask-sample-app
358358
arguments:
359359
action:push
360360
chart_name:charts/python
361361
kube_context:kostis-demo@FirstKubernetes
362362
DeployMyChart:
363-
type:helm
363+
type:helm:1.1.12
364364
stage:deploy
365365
working_directory:./python-flask-sample-app
366366
arguments:

‎_docs/example-catalog/cd-examples/deploy-to-heroku.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ steps:
8888
deploy_to_heroku:
8989
title: "Deploying to Heroku..."
9090
stage: "deploy"
91-
type: "heroku-deployer"
91+
type: "heroku-deployer:1.0.2"
9292
arguments:
9393
APP_NAME: $APP_NAME
9494
EMAIL: $EMAIL

‎_docs/example-catalog/cd-examples/helm.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ steps:
8080
dockerfile: Dockerfile
8181
deploy:
8282
title: Deploying Helm Chart
83-
type: helm
83+
type: helm:1.1.12
8484
stage: deploy
8585
working_directory: ./helm-sample-app
8686
arguments:
@@ -179,15 +179,15 @@ steps:
179179
dockerfile: Dockerfile
180180
store:
181181
title: Storing Helm Chart
182-
type: helm
182+
type: helm:1.1.12
183183
stage: store
184184
working_directory: ./helm-sample-app
185185
arguments:
186186
action: push
187187
chart_name: charts/helm-example
188188
kube_context: my-demo-k8s-cluster
189189
deploy:
190-
type: helm
190+
type: helm:1.1.12
191191
stage: deploy
192192
working_directory: ./helm-sample-app
193193
arguments:

‎_docs/example-catalog/ci-examples/call-child-pipelines.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ steps:
6262
call_qa_pipeline:
6363
title: Deploy to QA
6464
stage: deploy
65-
type: codefresh-run
65+
type: codefresh-run:1.5.3
6666
arguments:
6767
PIPELINE_ID: child-pipelines/qa-pipeline
6868
VARIABLE:
@@ -76,7 +76,7 @@ steps:
7676
call_prod_pipeline:
7777
title: Deploy to Prod
7878
stage: deploy
79-
type: codefresh-run
79+
type: codefresh-run:1.5.3
8080
arguments:
8181
PIPELINE_ID: child-pipelines/prod-pipeline
8282
VARIABLE:

‎_docs/example-catalog/ci-examples/sending-the-notification-to-jira.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This documentation uses the following [example](https://github.com/codefresh-con
2626
{% highlight yaml %}
2727
JiraCommentCreate:
2828
title: "Add Jira Comment"
29-
type: "jira-issue-manager"
29+
type: "jira-issue-manager:1.0.11"
3030
stage: "deploy"
3131
arguments:
3232
JIRA_BASE_URL: '${{JIRA_BASE_URL}}'

‎_docs/example-catalog/ci-examples/vault-secrets-in-the-pipeline.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ steps:
6464
vault:
6565
title:Importing vault values...
6666
stage:"vault"
67-
type:vault
67+
type:vault:0.0.7
6868
arguments:
6969
VAULT_ADDR:'http://<YOUR_VAULT_SERVER_IP>:<PORT>'
7070
VAULT_PATH:'path/to/secret'

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp