blob: 25e176df08c9de9112ba0922244335f917f6b033 [file] [log] [blame]
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +04001input: {
gio44f621b2024-04-29 09:44:38 +04002 network: #Network @name(Network)
3 subdomain: string @name(Subdomain)
4 auth: #Auth @name(Authentication)
Giorgi Lekveishvili7c427602024-01-04 00:13:55 +04005}
6
Giorgi Lekveishvili7c427602024-01-04 00:13:55 +04007_domain: "\(input.subdomain).\(input.network.domain)"
8
gio44f621b2024-04-29 09:44:38 +04009name: "rPuppy"
Giorgi Lekveishvilief21c132024-01-17 18:57:58 +040010namespace: "app-rpuppy"
Giorgi Lekveishvili7c427602024-01-04 00:13:55 +040011readme: "rpuppy application will be installed on \(input.network.name) network and be accessible to any user on https://\(_domain)"
Giorgi Lekveishvilief21c132024-01-17 18:57:58 +040012description: "Delights users with randomly generate puppy pictures. Can be configured to be reachable only from private network or publicly."
13icon: "<svg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 256 256'><path fill='currentColor' d='M100 140a8 8 0 1 1-8-8a8 8 0 0 1 8 8Zm64 8a8 8 0 1 0-8-8a8 8 0 0 0 8 8Zm64.94-9.11a12.12 12.12 0 0 1-5 1.11a11.83 11.83 0 0 1-9.35-4.62l-2.59-3.29V184a36 36 0 0 1-36 36H80a36 36 0 0 1-36-36v-51.91l-2.53 3.27A11.88 11.88 0 0 1 32.1 140a12.08 12.08 0 0 1-5-1.11a11.82 11.82 0 0 1-6.84-13.14l16.42-88a12 12 0 0 1 14.7-9.43h.16L104.58 44h46.84l53.08-15.6h.16a12 12 0 0 1 14.7 9.43l16.42 88a11.81 11.81 0 0 1-6.84 13.06ZM97.25 50.18L49.34 36.1a4.18 4.18 0 0 0-.92-.1a4 4 0 0 0-3.92 3.26l-16.42 88a4 4 0 0 0 7.08 3.22ZM204 121.75L150 52h-44l-54 69.75V184a28 28 0 0 0 28 28h44v-18.34l-14.83-14.83a4 4 0 0 1 5.66-5.66L128 186.34l13.17-13.17a4 4 0 0 1 5.66 5.66L132 193.66V212h44a28 28 0 0 0 28-28Zm23.92 5.48l-16.42-88a4 4 0 0 0-4.84-3.16l-47.91 14.11l62.11 80.28a4 4 0 0 0 7.06-3.23Z'/></svg>"
Davit Tabidze56f86a42024-04-09 19:15:25 +040014url: _domain
Giorgi Lekveishvili7c427602024-01-04 00:13:55 +040015
Giorgi Lekveishvili67383962024-03-22 19:27:34 +040016_httpPortName: "http"
17
gio1de49582024-04-21 08:33:57 +040018ingress: {
19 rpuppy: {
Giorgi Lekveishvili67383962024-03-22 19:27:34 +040020 auth: input.auth
21 network: input.network
22 subdomain: input.subdomain
gio1de49582024-04-21 08:33:57 +040023 service: {
24 name: "rpuppy"
25 port: name: _httpPortName
26 }
Giorgi Lekveishvili67383962024-03-22 19:27:34 +040027 }
28}
29
gio1de49582024-04-21 08:33:57 +040030images: {
Giorgi Lekveishvili7c427602024-01-04 00:13:55 +040031 rpuppy: {
32 repository: "giolekva"
33 name: "rpuppy"
34 tag: "latest"
35 pullPolicy: "Always"
36 }
37}
38
gio1de49582024-04-21 08:33:57 +040039charts: {
Giorgi Lekveishvili7c427602024-01-04 00:13:55 +040040 rpuppy: {
Giorgi Lekveishvili9b52ab92024-01-05 13:12:48 +040041 chart: "charts/rpuppy"
42 sourceRef: {
Giorgi Lekveishvili7c427602024-01-04 00:13:55 +040043 kind: "GitRepository"
Giorgi Lekveishvili9b52ab92024-01-05 13:12:48 +040044 name: "pcloud"
45 namespace: global.id
Giorgi Lekveishvili7c427602024-01-04 00:13:55 +040046 }
Giorgi Lekveishvili7c427602024-01-04 00:13:55 +040047 }
48}
49
gio1de49582024-04-21 08:33:57 +040050helm: {
Giorgi Lekveishvili7c427602024-01-04 00:13:55 +040051 rpuppy: {
52 chart: charts.rpuppy
53 values: {
Giorgi Lekveishvili7c427602024-01-04 00:13:55 +040054 image: {
55 repository: images.rpuppy.fullName
56 tag: images.rpuppy.tag
57 pullPolicy: images.rpuppy.pullPolicy
58 }
Giorgi Lekveishvili0ba5e402024-03-20 15:56:30 +040059 portName: _httpPortName
60 }
61 }
Giorgi Lekveishvili7c427602024-01-04 00:13:55 +040062}