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

Commitbd9882f

Browse files
authored
Merge branch 'master' into classic-changelog
2 parents6b2214d +bef292c commitbd9882f

File tree

5 files changed

+38
-18
lines changed

5 files changed

+38
-18
lines changed

‎_docs/administration/codefresh-on-prem.md‎

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -681,27 +681,43 @@ mongo:
681681

682682
#### MongoDB with Mutual TLS
683683

684-
Codefresh supports enabling SSL/TLS between cf microservices and MongoDB. To enable this option specify in `config.yaml` the following parameters:<br />
684+
>The option available in kcfi **v0.5.10**
685+
686+
Codefresh supports enabling SSL/TLS between cf microservices and MongoDB. To enable this option specify in `config.yaml` the following parameters:
687+
685688
`global.mongoTLS:true` <br />
686-
`global.mongoCaCert`- CA certificate(base64 encoded) <br />
687-
`global.mongoCaKey`- CA certificate private key(base64 encoded)
689+
`global.mongoCaCert`- CA certificatefile path (in kcfi init directory) <br />
690+
`global.mongoCaKey`- CA certificate private keyfile path (in kcfi init directory)
688691

692+
`config.yaml` example:
689693
```yaml
690694
global:
691-
mongodbRootUser:<MONGO_ROOT_USER>
692-
mongodbRootPassword:<MONGO_ROOT_PASSWORD>
693-
mongoURI:<MONGO_URI>
695+
mongodbRootUser:root
696+
mongodbRootPassword:WOIqcSwr0y
697+
mongoURI:mongodb+srv://cfuser:mTiXcU2wafr9@my-mongodb.prod.svc.cluster.local
694698
mongoSkipUserCreation: true
695699
mongoDeploy: false # disables deployment of internal mongo service
696700
697701
mongoTLS: true #enable MongoDB TLS support
698-
mongoCaCert: "LS0tLS1CRUdJTiBD..." #CA certificate (base64 encoded)
699-
mongoCaKey: "LS0tLS1CRUdJTiBS..." #CA certificate private key (base64 encoded)
702+
mongoCaCert: mongodb-ca/ca-cert.pem
703+
mongoCaKey: mongodb-ca/ca-key.pem
704+
705+
### for OfflineLogging feature
706+
runtimeMongoURI: mongodb+srv://cfuser:mTiXcU2wafr9@my-mongodb.prod.svc.cluster.local
707+
708+
### for OfflineLogging feature
709+
cfapi:
710+
env:
711+
RUNTIME_MONGO_TLS: "true"
712+
RUNTIME_MONGO_TLS_VALIDATE: "true" # 'false' if self-signed certificate to avoid x509 errors
700713
701714
mongo:
702715
enabled: false #disable default mongodb subchart installation
703716
```
704717

718+
>Perform an upgarde with `--no-hooks` option: <br />
719+
>`kcfi deploy -c config.yaml --debug --no-hooks` (WIP)
720+
705721
### Configure an external Redis service
706722
Codefresh recommends to use the Bitnami Redis [chart](https://github.com/bitnami/charts/tree/master/bitnami/redis) as a Redis store.
707723

‎_docs/configure-ci-cd-pipeline/monitoring-pipelines.md‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ caption="Pipeline activity"
2727
max-width="80%"
2828
%}
2929

30-
By default, it shows all builds that happening in Codefresh. To narrow the list you can use the filters on the top
30+
By default, it shows all builds thatishappening in Codefresh. To narrow the list you can use the filters on the top
3131
of the screen.
3232

3333
###Applying filters on the build view
@@ -100,7 +100,7 @@ You can combine all previously mentioned filters with the time based filters.
100100
Once you have a set of filters that you use regularly, you can save them as a custom*Build View* by clicking the*Save as View* button
101101
and providing a name.
102102

103-
Now you can select at the top of the window any of the available build views to automatically filter results according to the respectiveset of filters.
103+
Now you can select at the top of the window any of the available build views to automatically filter results according to the respectivesets of filters.
104104

105105
{% include
106106
image.html
@@ -183,7 +183,7 @@ max-width="80%"
183183

184184

185185
You can copy the step logs with the*copy to clipboard* button at the top left corner of the log window.
186-
You can also search the logs by clicking at magnifying glass icon at the top right corner in the log window.
186+
You can also search the logs by clicking atthemagnifying glass icon at the top right corner in the log window.
187187

188188
###Reviewing the yaml for the pipeline
189189

@@ -346,7 +346,7 @@ For open source projects you also have the ability to [trigger builds from exter
346346
###Viewing Pipeline status from text/html files
347347

348348
Codefresh also supports build badges that allow you to show the
349-
status of Pipeline in Text files or web pages.
349+
status ofaPipeline in Text files or web pages.
350350

351351
{% include
352352
image.html

‎_docs/configure-ci-cd-pipeline/triggers/cron-triggers.md‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ redirect_from:
99
toc:true
1010
---
1111

12-
Cron triggers allow you to create pipelines that start on a specific time schedule. Thisthis very useful for cleanup jobs or periodic checks or any other workflow that needs to run after a time interval.
12+
Cron triggers allow you to create pipelines that start on a specific time schedule. Thisis very useful for cleanup jobs or periodic checks or any other workflow that needs to run after a time interval.
1313

1414
>All times mentioned in Cron triggers are using the UTC time zone.
1515
@@ -35,8 +35,8 @@ Visit [this page](https://github.com/codefresh-io/cronus/blob/master/docs/expres
3535

3636
Fill the following information:
3737

38-
* Use Cron helper wizard to build a valid`cron` expression or write custom`cron` expression on last tab.
39-
* Add a free text message, that will be sent as additional event payload every time`cron` is executed.
38+
* Use Cron helper wizard to build a valid`cron` expression or write custom`cron` expression onthelast tab.
39+
* Add a free text message, that will be sent asanadditional event payload every time`cron` is executed.
4040

4141
{% include image.html
4242
lightbox="true"
@@ -79,7 +79,7 @@ Visit [this page](https://github.com/codefresh-io/cronus/blob/master/docs/expres
7979

8080
####Setup pipeline trigger
8181

82-
Now, lets create a new pipeline trigger, linking previously defined`cron``trigger-event` to oneore more Codefresh pipelines.
82+
Now, lets create a new pipeline trigger, linking previously defined`cron``trigger-event` to oneor more Codefresh pipelines.
8383

8484
```sh
8585
# create trigger, linking trigger-event UID to the pipeline UID
@@ -89,7 +89,7 @@ codefresh create trigger "cron:codefresh:codefresh:0 */20 * * * *:hello-once-in-
8989
codefresh create trigger"cron:codefresh:codefresh:0 */20 * * * *:hello-once-in-20-min:107e9db97062" 4a5634e4b2cd6baf021a3c0a
9090
```
9191

92-
From now on, every 20 minutes Codefresh will trigger pipeline execution for 2pipeline linked to the previously specified`cron``trigger-event` (once in 20 minutes)
92+
From now on, every 20 minutes Codefresh will triggerapipeline execution for 2pipelines linked to the previously specified`cron``trigger-event` (once in 20 minutes)
9393

9494
####Cron Event payload
9595

‎_docs/integrations/codecov-integration.md‎

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,11 @@ caption="Enter Token"
3131
alt="Enter Token"
3232
%}
3333

34-
Enter your token (see the previous section) and a name (user-defined) for this integration. The name should be unique for each integration that you add.
34+
Enter the following:
35+
***Integration name**: The user-defined name for this integration. The name should be unique for each integration that you add.
36+
***Token**: The token (see the previous section) for this integration.
37+
***Url**: The base URL for this integration. Do not add the trailing slash to the URL definition. For more information, see the[official Codecov documentation](https://docs.codecov.com/docs/configuration#codecov-url){:target="\_blank"}.
38+
3539

3640
Using Codecov in a Codefresh Pipeline:
3741

87.4 KB
Loading

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp