Skip to content
This repository was archived by the owner on Nov 10, 2019. It is now read-only.

Commit 6269d86

Browse files
metadata update
1 parent d916342 commit 6269d86

File tree

6 files changed

+95
-41
lines changed

6 files changed

+95
-41
lines changed

plugins/run-jenkins-job/example.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
RunJenkins:
2+
title: Triggering Jenkins Job
3+
image: codefresh/cf-run-jenkins-job
4+
environment:
5+
- JENKINS_URL=http://<jenkins host>:<jenkins port>
6+
- JENKINS_USER=<jenkins user name>
7+
- JENKINS_TOKEN=<jenkins token>
8+
- JENKINS_JOB=<jenkins job name>

plugins/run-jenkins-job/plugin.yaml

Lines changed: 11 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,18 @@
1-
image: codefresh/run-jenkins-jobs
2-
tag: master
3-
version: 0.1.0
1+
title: Run jenkins job
2+
image: codefresh/run-jenkins-jobs:master
43
description: Run jenkins job from codefresh pipeline
5-
keywords:
6-
- docker
7-
- jenkins
8-
home: https://github.com/codefresh-io/cf-run-jenkins-jobs
9-
sources:
10-
- https://github.com/codefresh-io/cf-run-jenkins-jobs
11-
maintainers: # (optional)
4+
category:
5+
- Featured
6+
source: 'https://github.com/codefresh-io/cf-run-jenkins-jobs'
7+
logo: 'https://dab1nmslvvntp.cloudfront.net/wp-content/uploads/2016/11/1479211772build-image-with-dockerfile_feature.jpg'
8+
maintainers:
129
- name: Vadim Waisman
13-
email: vadim@codefresh.io
14-
- name: Jenny Passi
15-
email: jenny@codefresh.io
16-
icon: https://dab1nmslvvntp.cloudfront.net/wp-content/uploads/2016/11/1479211772build-image-with-dockerfile_feature.jpg
1710
envs:
1811
- name: JENKINS_USERNAME
19-
type: required
20-
description: jenkins username
12+
description: jenkins username (required)
2113
- name: JENKINS_TOKEN
22-
type: required
23-
description: jenkins token
14+
description: jenkins token (required)
2415
- name: JENKINS_URL
25-
type: required
26-
description: jenkins machine url
16+
description: jenkins machine url (required)
2717
- name: JENKINS_JOB
28-
type: required
29-
description: list of jenkins jobs to run separated by spaces
18+
description: list of jenkins jobs to run separated by spaces (required)
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
image: codefresh/run-jenkins-jobs
2+
tag: master
3+
version: 0.1.0
4+
description: Run jenkins job from codefresh pipeline
5+
keywords:
6+
- docker
7+
- jenkins
8+
home: https://github.com/codefresh-io/cf-run-jenkins-jobs
9+
sources:
10+
- https://github.com/codefresh-io/cf-run-jenkins-jobs
11+
maintainers: # (optional)
12+
- name: Vadim Waisman
13+
email: vadim@codefresh.io
14+
- name: Jenny Passi
15+
email: jenny@codefresh.io
16+
icon: https://dab1nmslvvntp.cloudfront.net/wp-content/uploads/2016/11/1479211772build-image-with-dockerfile_feature.jpg
17+
envs:
18+
- name: JENKINS_USERNAME
19+
type: required
20+
description: jenkins username
21+
- name: JENKINS_TOKEN
22+
type: required
23+
description: jenkins token
24+
- name: JENKINS_URL
25+
type: required
26+
description: jenkins machine url
27+
- name: JENKINS_JOB
28+
type: required
29+
description: list of jenkins jobs to run separated by spaces

plugins/sendgrid/example.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
TestMail:
2+
title: Test Mail
3+
image: 'codefresh/sendgridplugin:latest'

plugins/sendgrid/plugin.yaml

Lines changed: 11 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,24 @@
1-
image: codefresh/sendgridplugin
2-
version: latest
1+
title: Send e-mail via Sendgrid
2+
image: codefresh/sendgridplugin:latest
33
description: Send e-mail via Sendgrid
4-
keywords:
5-
- mail
6-
- sendgrid
7-
home: https://github.com/codefresh-io/sendgridplugin
8-
sources:
9-
- https://github.com/codefresh-io/sendgridplugin
4+
category:
5+
- Featured
6+
source: 'https://github.com/codefresh-io/sendgridplugin'
7+
logo: 'https://images.ctfassets.net/bx16dovk9m7p/XNo9W4lwAMsai8KOikAae/35f6df5bf800dd4993c2d98376448f0d/a37a5b5ab495b5531dd406d40baa8a5c.png'
108
maintainers:
119
- name: Pavel Kostohrys
12-
email: pavel@codefresh.io
13-
icon: https://images.ctfassets.net/bx16dovk9m7p/XNo9W4lwAMsai8KOikAae/35f6df5bf800dd4993c2d98376448f0d/a37a5b5ab495b5531dd406d40baa8a5c.png
1410
envs:
1511
- name: SENDGRID_APIKEY
16-
type: required
17-
description: API key from SendGrid
12+
description: 'API key from SendGrid (required)'
1813
- name: SENDGRID_MAIL
1914
type: required
20-
description: mail where the letter will be sent, you can use comma divider to send on multiple mails (ex.: mail1@example.com, mail2@exmaple.com)
15+
description: 'mail where the letter will be sent, you can use comma divider to send on multiple mails (ex.: mail1@example.com, mail2@exmaple.com)'
2116
- name: SENDGRID_FROM
22-
type: required
23-
description: from header of mail
17+
description: 'from header of mail (required)'
2418
- name: SENDGRID_SUBJECT
25-
type: required
26-
description: subject header of mail
19+
description: 'subject header of mail (required)'
2720
- name: SENDGRID_TYPE
28-
type: required
29-
description: type of mail [build, message, custom]
21+
description: 'type of mail [build, message, custom] (required)'
3022
- name: SENDGRID_MESSAGE
3123
description: Text of message for type message
3224
- name: SENDGRID_TEMPLATE

plugins/sendgrid/plugin_old.yaml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
image: codefresh/sendgridplugin
2+
version: latest
3+
description: Send e-mail via Sendgrid
4+
keywords:
5+
- mail
6+
- sendgrid
7+
home: https://github.com/codefresh-io/sendgridplugin
8+
sources:
9+
- https://github.com/codefresh-io/sendgridplugin
10+
maintainers:
11+
- name: Pavel Kostohrys
12+
email: pavel@codefresh.io
13+
icon: https://images.ctfassets.net/bx16dovk9m7p/XNo9W4lwAMsai8KOikAae/35f6df5bf800dd4993c2d98376448f0d/a37a5b5ab495b5531dd406d40baa8a5c.png
14+
envs:
15+
- name: SENDGRID_APIKEY
16+
type: required
17+
description: API key from SendGrid
18+
- name: SENDGRID_MAIL
19+
type: required
20+
description: mail where the letter will be sent, you can use comma divider to send on multiple mails (ex.: mail1@example.com, mail2@exmaple.com)
21+
- name: SENDGRID_FROM
22+
type: required
23+
description: from header of mail
24+
- name: SENDGRID_SUBJECT
25+
type: required
26+
description: subject header of mail
27+
- name: SENDGRID_TYPE
28+
type: required
29+
description: type of mail [build, message, custom]
30+
- name: SENDGRID_MESSAGE
31+
description: Text of message for type message
32+
- name: SENDGRID_TEMPLATE
33+
description: Template of message for type message

0 commit comments

Comments
 (0)