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

Classic typed version updates#907

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
NimRegev merged 5 commits intomasterfromclassic-typed-version-updates
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions_docs/ci-cd-guides/environment-deployments.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -167,7 +167,7 @@ steps:
registry: dockerhub
deployStaging:
title: Deploying to Staging
type: helm
type: helm:1.1.12
stage: deployment
working_directory: ./helm-promotion-sample-app
arguments:
Expand All@@ -185,7 +185,7 @@ steps:
- master
deployProd:
title: Deploying to Production
type: helm
type: helm:1.1.12
stage: deployment
working_directory: ./helm-promotion-sample-app
arguments:
Expand DownExpand Up@@ -332,7 +332,7 @@ steps:
registry: dockerhub
deployStaging:
title: Deploying to Staging
type: helm
type: helm:1.1.12
stage: deployment
working_directory: ./helm-promotion-sample-app
arguments:
Expand DownExpand Up@@ -360,7 +360,7 @@ steps:
releaseName: example-staging
deployProd:
title: Deploying to Production
type: helm
type: helm:1.1.12
stage: deployment
working_directory: ./helm-promotion-sample-app
arguments:
Expand DownExpand Up@@ -456,7 +456,7 @@ steps:
registry: dockerhub
deployStaging:
title: Deploying to Staging
type: helm
type: helm:1.1.12
stage: staging
working_directory: ./helm-promotion-sample-app
arguments:
Expand All@@ -474,7 +474,7 @@ steps:
title: Deploy to production?
deployProd:
title: Deploying to Production
type: helm
type: helm:1.1.12
stage: prod
working_directory: ./helm-promotion-sample-app
arguments:
Expand DownExpand Up@@ -564,7 +564,7 @@ steps:

deployStaging:
title: Deploying to Staging
type: helm
type: helm:1.1.12
stage: staging
working_directory: ./helm-promotion-sample-app
arguments:
Expand DownExpand Up@@ -639,7 +639,7 @@ steps:
- 8080
deployProd:
title: Deploying to Production
type: helm
type: helm:1.1.12
stage: prod
working_directory: ./helm-promotion-sample-app
arguments:
Expand Down
2 changes: 1 addition & 1 deletion_docs/ci-cd-guides/gitops-deployments.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -130,7 +130,7 @@ steps:

ReportImageMetadataAll:
title: Report image to Codefresh CD
type: codefresh-report-image
type: codefresh-report-image:1.0.10
working_directory: /code
stage: "report"
arguments:
Expand Down
4 changes: 2 additions & 2 deletions_docs/ci-cd-guides/preview-environments.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -199,7 +199,7 @@ steps:
stage: "deploy"
deploy:
title: Deploying Helm Chart
type: helm
type: helm:1.1.12
stage: deploy
working_directory: ./unlimited-test-environments-manifests
arguments:
Expand DownExpand Up@@ -298,7 +298,7 @@ version: "1.0"
steps:
delete_app:
title: Delete app
type: helm
type: helm:1.1.12
arguments:
action: auth
helm_version: 3.2.4
Expand Down
6 changes: 3 additions & 3 deletions_docs/ci-cd-guides/progressive-delivery.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -196,7 +196,7 @@ steps:
- KUBERNETES_NAMESPACE=blue-green
wait_for_new_color:
fail_fast: false
type: pending-approval
type: pending-approval:1.0.2
title: Is the new color ok?
stage: deploy
promote_color:
Expand DownExpand Up@@ -591,7 +591,7 @@ steps:
- KUBERNETES_NAMESPACE=canary
check_canary_10:
fail_fast: false
type: pending-approval
type: pending-approval:1.0.2
title: Is canary ok?
stage: 'canary 10%'
promote_canary_33:
Expand DownExpand Up@@ -630,7 +630,7 @@ steps:
- denied
check_canary_33:
fail_fast: false
type: pending-approval
type: pending-approval:1.0.2
title: Is canary ok?
stage: 'canary 33%'
promote_canary_full:
Expand Down
14 changes: 7 additions & 7 deletions_docs/deployments/helm/using-helm-in-codefresh-pipeline.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -128,7 +128,7 @@ The example below illustrates how to provide variables as part of the Helm step

```yaml
deploy:
type: helm
type: helm:1.1.12
arguments:
action: install
chart_name: test_chart
Expand DownExpand Up@@ -202,7 +202,7 @@ The following example includes the minimum configuration to install a Helm chart

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

```yaml
deploy:
type: helm
type: helm:1.1.12
arguments:
action: push
chart_name: /codefresh/volume/repo/chart
Expand All@@ -235,7 +235,7 @@ The following example illustrates the Helm mode for authentication only.

```yaml
deploy:
type: helm
type: helm:1.1.12
arguments:
action: auth
kube_context: my-kubernetes-context
Expand All@@ -251,7 +251,7 @@ The following example illustrates executing custom Helm commands.
{% highlight yaml %}
{% raw %}
my_custom_helm_command:
type: helm
type: helm:1.1.12
arguments:
action: auth
kube_context: my-kubernetes-context
Expand DownExpand Up@@ -352,15 +352,15 @@ steps:
- python setup.py test
StoreChart:
title: Storing Helm Chart
type: helm
type: helm:1.1.12
stage: store
working_directory: ./python-flask-sample-app
arguments:
action: push
chart_name: charts/python
kube_context: kostis-demo@FirstKubernetes
DeployMyChart:
type: helm
type: helm:1.1.12
stage: deploy
working_directory: ./python-flask-sample-app
arguments:
Expand Down
2 changes: 1 addition & 1 deletion_docs/example-catalog/cd-examples/deploy-to-heroku.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -88,7 +88,7 @@ steps:
deploy_to_heroku:
title: "Deploying to Heroku..."
stage: "deploy"
type: "heroku-deployer"
type: "heroku-deployer:1.0.2"
arguments:
APP_NAME: $APP_NAME
EMAIL: $EMAIL
Expand Down
6 changes: 3 additions & 3 deletions_docs/example-catalog/cd-examples/helm.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -80,7 +80,7 @@ steps:
dockerfile: Dockerfile
deploy:
title: Deploying Helm Chart
type: helm
type: helm:1.1.12
stage: deploy
working_directory: ./helm-sample-app
arguments:
Expand DownExpand Up@@ -179,15 +179,15 @@ steps:
dockerfile: Dockerfile
store:
title: Storing Helm Chart
type: helm
type: helm:1.1.12
stage: store
working_directory: ./helm-sample-app
arguments:
action: push
chart_name: charts/helm-example
kube_context: my-demo-k8s-cluster
deploy:
type: helm
type: helm:1.1.12
stage: deploy
working_directory: ./helm-sample-app
arguments:
Expand Down
4 changes: 2 additions & 2 deletions_docs/example-catalog/ci-examples/call-child-pipelines.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -62,7 +62,7 @@ steps:
call_qa_pipeline:
title: Deploy to QA
stage: deploy
type: codefresh-run
type: codefresh-run:1.5.3
arguments:
PIPELINE_ID: child-pipelines/qa-pipeline
VARIABLE:
Expand All@@ -76,7 +76,7 @@ steps:
call_prod_pipeline:
title: Deploy to Prod
stage: deploy
type: codefresh-run
type: codefresh-run:1.5.3
arguments:
PIPELINE_ID: child-pipelines/prod-pipeline
VARIABLE:
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,7 +26,7 @@ This documentation uses the following [example](https://github.com/codefresh-con
{% highlight yaml %}
JiraCommentCreate:
title: "Add Jira Comment"
type: "jira-issue-manager"
type: "jira-issue-manager:1.0.11"
stage: "deploy"
arguments:
JIRA_BASE_URL: '${{JIRA_BASE_URL}}'
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -64,7 +64,7 @@ steps:
vault:
title: Importing vault values...
stage: "vault"
type: vault
type: vault:0.0.7
arguments:
VAULT_ADDR: 'http://<YOUR_VAULT_SERVER_IP>:<PORT>'
VAULT_PATH: 'path/to/secret'
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -58,7 +58,7 @@ steps:

ReportImageMetadataAll:
title: Report image to Codefresh CD
type: codefresh-report-image
type: codefresh-report-image:1.0.10
working_directory: /code
stage: "report"
arguments:
Expand Down
2 changes: 1 addition & 1 deletion_docs/integrations/codecov-integration.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -62,7 +62,7 @@ With the integration in place, you can reference it by name in any Codefresh pip
codecov-report:
stage: "prepare"
title: Codecov report
type: codecov-reporter
type: codecov-reporter:2.1.0
arguments:
codecov_integration: my-codecov-integration
```
Expand Down
2 changes: 1 addition & 1 deletion_docs/integrations/github-actions.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -113,7 +113,7 @@ steps:
snyk-cli-action:
title: snyk
description: snyk
type: github-action-executor
type: github-action-executor:0.2.2
arguments:
url: 'https://github.com/marketplace/actions/snyk-cli-action'
envs:
Expand Down
2 changes: 1 addition & 1 deletion_docs/kb/articles/files-reset-after-approval.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -42,7 +42,7 @@ version: "1.0"

steps:
slack_notify:
type: slack-notifier
type: slack-notifier:0.0.8
arguments:
SLACK_HOOK_URL: '${{SLACK_WEBHOOK_URL}}'
SLACK_TEXT: 'There is a build pending approval'
Expand Down
2 changes: 1 addition & 1 deletion_docs/kb/articles/jfrog-helm-401.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -29,7 +29,7 @@ Add `credentials_in_arguments: true` as an Argument in the Helm step, for exampl
```yaml
step-name:
    title: "Pushing Helm Chart to HELM REPO"
    type: "helm"
    type: "helm:1.1.12"
    arguments:
      helm_version: "3.0.1"
      action: "push"
Expand Down
2 changes: 1 addition & 1 deletion_docs/kb/articles/mount-volumes-in-composition-step.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -57,7 +57,7 @@ steps:

conform:
title: Fix docker compose
type: composition-editor
type: composition-editor:1.1.0
stage: Build
arguments:
DIRECTORY: ${{CF_VOLUME_PATH}}/${{CF_REPO_NAME}}
Expand Down
4 changes: 2 additions & 2 deletions_docs/kb/articles/run-step-build-trigger-by-webhook.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -27,7 +27,7 @@ To execute a step only when a build is manually triggered, you can create a cond
```yaml
steps:
SendToSlack:
type: slack-notifier
type: slack-notifier:0.0.8
arguments:
SLACK_HOOK_URL: '${{SLACK_WEBHOOK_URL}}'
SLACK_TEXT: '${{SLACK_TEXT}}'
Expand All@@ -51,7 +51,7 @@ To get around this, you can explicitly pass this variable from the parent to the
```yaml
steps:
run_child_pipeline:
type: codefresh-run
type: codefresh-run:1.5.3
arguments:
...
VARIABLE:
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,7 +26,7 @@ Set up a separate cron-triggered pipeline as the parent pipeline. From this pare
```yaml
codeamlfresh-run:
title: Run a codefresh pipeline
type: codefresh-run
type: codefresh-run:1.5.3
arguments:
PIPELINE_ID: <project-name/pip_name>
TRIGGER_ID: <trigger-name>
Expand Down
6 changes: 3 additions & 3 deletions_docs/kb/articles/send-emails-specific-users.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -28,7 +28,7 @@ hooks:
on_elected:
steps:
SendEmail:
type: smtp
type: smtp:1.0.2
arguments:
TO: 'group_email@company.com'
FROM: no-reply@company.com
Expand All@@ -43,7 +43,7 @@ on_elected:
on_success:
steps:
SendEmail:
type: smtp
type: smtp:1.0.2
arguments:
TO: 'group_email@company.com'
FROM: no-reply@company.com
Expand All@@ -58,7 +58,7 @@ on_success:
on_failure:
steps:
SendEmail:
type: smtp
type: smtp:1.0.2
arguments:
TO: 'group_email@company.com'
FROM: no-reply@company.com
Expand Down
2 changes: 1 addition & 1 deletion_docs/pipelines/configuration/shared-configuration.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -194,7 +194,7 @@ Add the shared variables to your Helm step:
{% highlight shell %}
{% raw %}
deploy:
type: "helm"
type: "helm:1.1.12"
working_directory: "./react-article-display"
stage: "deploy"
arguments:
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp