added gitea
This commit is contained in:
parent
685be4d53a
commit
5bfab01632
35
templates/gitea/0/docker-compose.yml.tpl
Normal file
35
templates/gitea/0/docker-compose.yml.tpl
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
version: '2'
|
||||||
|
services:
|
||||||
|
gitea:
|
||||||
|
image: gitea/gitea:1.3
|
||||||
|
volumes:
|
||||||
|
- gitea-data:/data
|
||||||
|
{{- if ne .Values.db_link ""}}
|
||||||
|
external_links:
|
||||||
|
- ${db_link}:db
|
||||||
|
{{- else}}
|
||||||
|
links:
|
||||||
|
- db:db
|
||||||
|
db:
|
||||||
|
image: mysql:5.5
|
||||||
|
environment:
|
||||||
|
MYSQL_ROOT_PASSWORD: ${mysql_password}
|
||||||
|
MYSQL_USER: ${mysql_user}
|
||||||
|
MYSQL_PASSWORD: ${mysql_password}
|
||||||
|
MYSQL_DATABASE: ${mysql_db}
|
||||||
|
volumes:
|
||||||
|
- gitea-db:/var/lib/mysql
|
||||||
|
{{- end}}
|
||||||
|
lb:
|
||||||
|
image: rancher/lb-service-haproxy:v0.6.4
|
||||||
|
ports:
|
||||||
|
- ${http_port}:${http_port}/tcp
|
||||||
|
- ${ssh_port}:${ssh_port}/tcp
|
||||||
|
volumes:
|
||||||
|
gitea-data:
|
||||||
|
driver: ${volume_driver}
|
||||||
|
{{- if eq .Values.db_link ""}}
|
||||||
|
gitea-db:
|
||||||
|
driver: ${volume_driver}
|
||||||
|
{{- end}}
|
||||||
|
|
94
templates/gitea/0/rancher-compose.yml
Normal file
94
templates/gitea/0/rancher-compose.yml
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
version: '2'
|
||||||
|
catalog:
|
||||||
|
name: "Gitea"
|
||||||
|
version: "v0.11.19"
|
||||||
|
description: "A painless self-hosted Git service"
|
||||||
|
uuid: gitea-0
|
||||||
|
minimum_rancher_version: v0.51.0
|
||||||
|
questions:
|
||||||
|
- variable: http_port
|
||||||
|
description: "http port to access Gitea's webui"
|
||||||
|
label: "Http Port"
|
||||||
|
required: true
|
||||||
|
default: "8080"
|
||||||
|
type: "int"
|
||||||
|
- variable: ssh_port
|
||||||
|
description: "ssh port to clone repositories via ssh"
|
||||||
|
label: "SSH Port"
|
||||||
|
required: true
|
||||||
|
default: "2222"
|
||||||
|
type: "int"
|
||||||
|
- variable: "volume_driver"
|
||||||
|
description: "Volume driver to associate with this service"
|
||||||
|
label: "Volume Driver"
|
||||||
|
required: true
|
||||||
|
default: "local"
|
||||||
|
type: enum
|
||||||
|
options: # List of options if using type of `enum`
|
||||||
|
- local
|
||||||
|
- rancher-nfs
|
||||||
|
- rancher-efs
|
||||||
|
- rancher-ebs
|
||||||
|
- variable: "db_link"
|
||||||
|
description: |
|
||||||
|
DB external service link cluster.
|
||||||
|
label: "External db service"
|
||||||
|
default: ""
|
||||||
|
required: false
|
||||||
|
type: "service"
|
||||||
|
- variable: mysql_db
|
||||||
|
description: "mysql db"
|
||||||
|
label: "Mysql db"
|
||||||
|
required: true
|
||||||
|
default: "gitea"
|
||||||
|
type: "string"
|
||||||
|
- variable: mysql_user
|
||||||
|
description: "mysql user"
|
||||||
|
label: "Mysql User"
|
||||||
|
required: true
|
||||||
|
default: "gitea"
|
||||||
|
type: "string"
|
||||||
|
- variable: mysql_password
|
||||||
|
description: "mysql root password"
|
||||||
|
label: "Mysql Password"
|
||||||
|
required: true
|
||||||
|
default: "default_pass"
|
||||||
|
type: "password"
|
||||||
|
services:
|
||||||
|
gitea:
|
||||||
|
scale: 1
|
||||||
|
retain_ip: true
|
||||||
|
health_check:
|
||||||
|
response_timeout: 2000
|
||||||
|
healthy_threshold: 2
|
||||||
|
port: 3000
|
||||||
|
unhealthy_threshold: 3
|
||||||
|
initializing_timeout: 300000
|
||||||
|
interval: 2000
|
||||||
|
strategy: recreate
|
||||||
|
request_line: GET "/" "HTTP/1.0"
|
||||||
|
reinitializing_timeout: 120000
|
||||||
|
lb:
|
||||||
|
scale: 1
|
||||||
|
start_on_create: true
|
||||||
|
lb_config:
|
||||||
|
certs: []
|
||||||
|
port_rules:
|
||||||
|
- priority: 1
|
||||||
|
protocol: http
|
||||||
|
service: gitea
|
||||||
|
source_port: ${http_port}
|
||||||
|
target_port: 3000
|
||||||
|
- priority: 2
|
||||||
|
protocol: tcp
|
||||||
|
service: gitea
|
||||||
|
source_port: ${ssh_port}
|
||||||
|
target_port: 22
|
||||||
|
health_check:
|
||||||
|
response_timeout: 2000
|
||||||
|
healthy_threshold: 2
|
||||||
|
port: 42
|
||||||
|
unhealthy_threshold: 3
|
||||||
|
initializing_timeout: 60000
|
||||||
|
interval: 2000
|
||||||
|
reinitializing_timeout: 60000
|
160
templates/gitea/catalogIcon-gitea.svg
Normal file
160
templates/gitea/catalogIcon-gitea.svg
Normal file
@ -0,0 +1,160 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="512"
|
||||||
|
height="512"
|
||||||
|
viewBox="0 0 135.46667 135.46667"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
sodipodi:docname="logo.svg"
|
||||||
|
inkscape:version="0.92.1 r15371"
|
||||||
|
inkscape:export-filename=""
|
||||||
|
inkscape:export-xdpi="48.000004"
|
||||||
|
inkscape:export-ydpi="48.000004">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.70710678"
|
||||||
|
inkscape:cx="418.13805"
|
||||||
|
inkscape:cy="177.57445"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
showgrid="false"
|
||||||
|
units="px"
|
||||||
|
width="256px"
|
||||||
|
showguides="false"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1137"
|
||||||
|
inkscape:window-x="1912"
|
||||||
|
inkscape:window-y="-8"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:pagecheckerboard="false"
|
||||||
|
inkscape:measure-start="283.373,243.952"
|
||||||
|
inkscape:measure-end="290.267,236.527">
|
||||||
|
<sodipodi:guide
|
||||||
|
position="0,0"
|
||||||
|
orientation="0,512"
|
||||||
|
id="guide3699"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="135.46667,0"
|
||||||
|
orientation="-512,0"
|
||||||
|
id="guide3701"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="135.46667,135.46667"
|
||||||
|
orientation="0,-512"
|
||||||
|
id="guide3703"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="0,135.46667"
|
||||||
|
orientation="512,0"
|
||||||
|
id="guide3705"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-161.53334)"
|
||||||
|
style="display:inline">
|
||||||
|
<path
|
||||||
|
style="fill:#609926;fill-opacity:1;stroke:#428f29;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
d="m 27.709937,195.15095 c -9.546573,-0.0272 -22.3392732,6.79805 -21.6317552,23.90397 1.105534,26.72889 25.4565952,29.20839 35.1916502,29.42301 1.068023,5.01357 12.521798,22.30563 21.001818,23.21667 h 37.15277 c 22.27763,-1.66785 38.9607,-75.75671 26.59321,-76.03825 -46.781583,2.47691 -49.995146,2.13838 -88.599758,0 -2.495053,-0.0266 -5.972321,-0.49474 -9.707935,-0.5054 z m 2.491319,9.45886 c 1.351378,13.69267 3.555849,21.70359 8.018216,33.94345 -11.382872,-1.50473 -21.069822,-5.22443 -22.851515,-19.10984 -0.950962,-7.4112 2.390428,-15.16769 14.833299,-14.83361 z"
|
||||||
|
id="path3722"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="sscccccsccsc" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Layer 2"
|
||||||
|
style="display:inline">
|
||||||
|
<rect
|
||||||
|
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.24757317;stroke-opacity:1"
|
||||||
|
id="rect4599"
|
||||||
|
width="34.762054"
|
||||||
|
height="34.762054"
|
||||||
|
x="87.508659"
|
||||||
|
y="18.291576"
|
||||||
|
transform="rotate(25.914715)"
|
||||||
|
ry="5.4825778" />
|
||||||
|
<path
|
||||||
|
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26644793px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 79.804947,57.359056 3.241146,1.609954 V 35.255731 h -3.262698 z"
|
||||||
|
id="path4525"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccc" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer3"
|
||||||
|
inkscape:label="Layer 3"
|
||||||
|
style="display:inline">
|
||||||
|
<g
|
||||||
|
style="display:inline"
|
||||||
|
id="g4539">
|
||||||
|
<circle
|
||||||
|
transform="rotate(-19.796137)"
|
||||||
|
r="3.4745038"
|
||||||
|
cy="90.077766"
|
||||||
|
cx="49.064713"
|
||||||
|
id="path4606"
|
||||||
|
style="fill:#609926;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-opacity:1" />
|
||||||
|
<circle
|
||||||
|
transform="rotate(-19.796137)"
|
||||||
|
r="3.4745038"
|
||||||
|
cy="102.1049"
|
||||||
|
cx="36.810425"
|
||||||
|
id="path4606-3"
|
||||||
|
style="fill:#609926;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-opacity:1" />
|
||||||
|
<circle
|
||||||
|
transform="rotate(-19.796137)"
|
||||||
|
r="3.4745038"
|
||||||
|
cy="111.43928"
|
||||||
|
cx="46.484283"
|
||||||
|
id="path4606-1"
|
||||||
|
style="fill:#609926;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-opacity:1" />
|
||||||
|
<rect
|
||||||
|
transform="rotate(26.024158)"
|
||||||
|
y="18.061695"
|
||||||
|
x="97.333458"
|
||||||
|
height="27.261492"
|
||||||
|
width="2.6726954"
|
||||||
|
id="rect4629-8"
|
||||||
|
style="fill:#609926;fill-opacity:1;stroke:none;stroke-width:0.27444693;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="cc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path4514"
|
||||||
|
d="m 76.558096,68.116343 c 12.97589,6.395378 13.012989,4.101862 4.890858,20.907244"
|
||||||
|
style="fill:none;stroke:#609926;stroke-width:2.68000007;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5.6 KiB |
5
templates/gitea/config.yml
Normal file
5
templates/gitea/config.yml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
name: Gitea
|
||||||
|
description: |
|
||||||
|
A painless self-hosted Git service
|
||||||
|
version: v1.3
|
||||||
|
category: Git
|
Loading…
x
Reference in New Issue
Block a user