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

Remove how to KB articles#924

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 intomasterfromkb-how-to-cleanup
Feb 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
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,9 +11,9 @@ redirect_from:
- /docs/getting-started/introduction/
toc: true
---
Before you candocreate pipelines, build, and deploy applications in Codefresh, you need to create a Codefresh account.
Before you can create pipelines, build, and deploy applications in Codefresh, you need to create a Codefresh account.

Creating an account in Codefresh is free (no credit card is required) and can be done in three simple steps
Creating an account in Codefresh is free (no credit card is required) and can be done in three simple steps:

{% include
image.html
Expand DownExpand Up@@ -167,50 +167,29 @@ max-width="40%"
%}


## Rename/delete Codefresh accounts
Codefresh administrators can rename and delete Codefresh accounts.

<!---nned to verify
The next step is learning how to [build your first application]({{site.baseurl}}/docs/administration/create-a-basic-pipeline/).
##### Rename Codefresh account
You may want to rename your existing account, for example, either due to a sign-up error or change of business name.

At this time, only Codefresh Support can rename accounts.
Please submit a support ticket with the following details:
* Current account name
* New account name
If the new account name already exists due to a sign-up error, please indicate this as well.

## Other Git connection options
##### Delete Codefresh account

>**NOTE:**
Only account owners can delete the account.


Codefresh also supports Atlassian Stash/Bitbucket Server. You need to [contact us](https://codefresh.io/contact-us/) to enable this integration before you can use it for your account.
1. In the Codefresh UI, on the toolbar, click the **Settings** icon and then select **Organization Information**.
1. Scroll down to Delete Account and click **Delete Account**.
1. To confirm, click **Delete Account** once again.



{% include
image.html
lightbox="true"
file="/images/administration/create-account/stash.png"
url="/images/administration/create-account/stash.png"
alt="Codefresh and Atlassian Stash"
caption="Codefresh and Atlassian Stash"
max-width="100%"
%}


Once that is done, follow the [Stash instructions]({{site.baseurl}}/docs/integrations/git-providers/#atlassian-stash) for more information.



## Using Codefresh in a secure corporate environment

If your source code repositories are in a private Git account that lies behind your company firewall, or simply has no access to the Internet, we can still help you!

{% include
image.html
lightbox="true"
file="/images/administration/create-account/git-firewall.png"
url="/images/administration/create-account/git-firewall.png"
alt="Git behind firewall"
caption="Git behind firewall"
max-width="100%"
%}

We can establish a VPN / tunnel to your network or discuss options for an on-premises Codefresh deployment. Please [contact us to get started](https://codefresh.io/contact-us/).

-->
## Related articles
[Adding users and teams]({{site.baseurl}}/docs/administration/account-user-management/add-users/)
[Configuring access control]({{site.baseurl}}/docs/administration/account-user-management/access-control/)
Expand Down
69 changes: 0 additions & 69 deletions_docs/kb/articles/about-reusevolumeselector-options.md
View file
Open in desktop

This file was deleted.

20 changes: 13 additions & 7 deletions_docs/kb/articles/acquire-webhook-information.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
---
title: "How To: Acquire webhook information after agit triggerhas been created"
title: "How To: Acquire webhook information after aGit triggeris created"
description:
group: kb
sub-group: articles
Expand All@@ -11,12 +11,18 @@ categories: [Pipelines, CLI]
support-reviewed: 2023-04-18 LG
---

## Overview

Currently, there is no way to gather this information via the Codefresh Web Interface. This information can be acquired via the CLI / API call to get the pipeline spec.

## Details
This article describes how to get webhook information for a Git trigger through the Codefresh CLI or API.
Currently, you cannot get webhook information through the user interface.

1. `codefresh get pipeline Project/Pipeline -o yaml`
2. Under spec.triggers you can see the information about each git trigger.
3. Information you will need is the **endpoint** and **secret** fields
## How to

* Run:
`codefresh get pipeline Project/Pipeline -o yaml`

The `spec.triggers` displays information about each Git trigger.
Look at the `endpoint` and `secret` fields.

## Related articles
[Git triggers in pipelines]({{site.baseurl}}/docs/pipelines/triggers/git-triggers/)
62 changes: 0 additions & 62 deletions_docs/kb/articles/add-link-to-parrent-from-child-pipeline.md
View file
Open in desktop

This file was deleted.

22 changes: 11 additions & 11 deletions_docs/kb/articles/adding-eks-cluster-programmatically.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
---
title: "How To:Adding a new AWS EKS cluster to Codefresh programmatically"
title: "How To:Add a new AWS EKS cluster to Codefresh programmatically"
description:
group: kb
sub-group: articles
Expand All@@ -11,14 +11,14 @@ categories: [Pipelines, API]
support-reviewed: 2023-04-18 LG
---

## Overview

As part of your pipeline, you create a new cluster and want to add it to Codefresh

## Details
This article describes how to add a new cluster created in a pipeline to Codefresh programmatically.

1. Note the name of the cluster in a variable, such as `$K8S_NAME`.
2. After the cluster is created, run the following API call, replacing all with your values or variables:
## How to

1. Create a variable for the cluster name, such as `$K8S_NAME`.
2. After the cluster is created, run the following API call, replacing all placeholders with your values or variables:

{% raw %}

Expand All@@ -45,9 +45,9 @@ add_new_cluster:

{% endraw %}

>_**Note**:_ A more detailed [EKS workflow can be foundhere](https://github.com/codefresh-io/eks-installer).

## Related Items
{{site.data.callout.callout_tip}}
See the detailed [EKS workflow](https://github.com/codefresh-io/eks-installer).
{{site.data.callout.end}}

* [EKS Installer](https://github.com/codefresh-io/eks-installer)
*[API documentation - clusters](https://g.codefresh.io/api/#tag/Clusters)
## Related articles
[API documentation - clusters](https://g.codefresh.io/api/#tag/Clusters)
26 changes: 13 additions & 13 deletions_docs/kb/articles/automating-shared-secrets-creation.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
---
title: "How To: Automate creation of Shared Secrets"
title: "How To: Automate creation of Shared Secrets for pipelines"
description:
group: kb
sub-group: articles
Expand All@@ -11,18 +11,18 @@ categories: [Pipelines, CLI]
support-reviewed: 2024-01-17 MB
---

## Overview
This articles describes how to manage secrets across different pipelines in an efficient manner.

You have numerous secrets to manage across different pipelines and want to make the process more efficient.

##Details
##Script for create secret context

The script reads each line from the provided file and appends it to the Codefresh `create context secret` command. This results in a single command that creates a secret context with all the specified secrets.
The script reads each line from the provided file and appends it to the Codefresh `create context secret` command.
This results in a single command that creates a secret context with all the specified secrets.

>**NOTE**
Ensure you have the necessary permissions to create contexts in Codefresh.

**Script**
##### Script

```bash
#!/bin/bash
Expand All@@ -38,22 +38,22 @@ done < "$1"
echo "$CMD"
```

**How to use the script**
##How to use the script

1. Prepare your secrets list
Start by preparing a file containing your secrets. Each line in the file should contain one secret in the format KEY=VALUE.
1. Prepare the list of your secrets.
Start by preparing a file containing your secrets.
Each line in the file should contain one secret in the format KEY=VALUE.

2. Set execution permissions
2. Set execution permissions.
Make the script executable by running:
`chmod +x script_name.sh`

3. Run the script
Execute the script with the command:
3. Run the script with the command:
`./script_name.sh secret_list.txt`
where:
`secret_list.txt` is the file containing your secrets

4. Verify creation
4. Verify creation.
After executing the script, verify that the secret context has been created in Codefresh with the specified secrets.


Expand Down
42 changes: 0 additions & 42 deletions_docs/kb/articles/builds-not-starting-on-hybrid-runtime.md
View file
Open in desktop

This file was deleted.

Loading

[8]ページ先頭

©2009-2025 Movatter.jp