mirror of
https://github.com/plcnk/charts.git
synced 2026-07-16 18:44:44 +00:00
feat(it-tools): Added replicas key (#9)
This commit is contained in:
committed by
GitHub
parent
392a30a3c9
commit
36dce8cb0c
@ -4,7 +4,7 @@ description: Collection of handy online tools for developers, with great UX.
|
|||||||
home: https://github.com/plcnk/charts/tree/master/charts/it-tools
|
home: https://github.com/plcnk/charts/tree/master/charts/it-tools
|
||||||
icon: https://raw.githubusercontent.com/plcnk/charts/master/charts/it-tools/icon.svg
|
icon: https://raw.githubusercontent.com/plcnk/charts/master/charts/it-tools/icon.svg
|
||||||
type: application
|
type: application
|
||||||
version: 2.1.0
|
version: 2.1.1
|
||||||
# renovate datasource=docker depName=ghcr.io/corentinth/it-tools
|
# renovate datasource=docker depName=ghcr.io/corentinth/it-tools
|
||||||
appVersion: "2024.5.13-a0bc346"
|
appVersion: "2024.5.13-a0bc346"
|
||||||
kubeVersion: ">=1.22.0-0"
|
kubeVersion: ">=1.22.0-0"
|
||||||
@ -20,8 +20,8 @@ sources:
|
|||||||
- https://github.com/CorentinTh/it-tools
|
- https://github.com/CorentinTh/it-tools
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |-
|
artifacthub.io/changes: |-
|
||||||
- kind: changed
|
- kind: added
|
||||||
description: Changed service port from 80 to 8080
|
description: Added replicas key
|
||||||
artifacthub.io/links: |-
|
artifacthub.io/links: |-
|
||||||
- name: App Source
|
- name: App Source
|
||||||
url: https://github.com/CorentinTh/it-tools
|
url: https://github.com/CorentinTh/it-tools
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<img src="https://raw.githubusercontent.com/plcnk/charts/master/charts/it-tools/icon.svg" align="right" width="92" alt="it-tools logo">
|
<img src="https://raw.githubusercontent.com/plcnk/charts/master/charts/it-tools/icon.svg" align="right" width="92" alt="it-tools logo">
|
||||||
|
|
||||||

|

|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
@ -11,7 +11,7 @@ Collection of handy online tools for developers, with great UX.
|
|||||||
**Homepage:** <https://github.com/plcnk/charts/tree/master/charts/it-tools>
|
**Homepage:** <https://github.com/plcnk/charts/tree/master/charts/it-tools>
|
||||||
|
|
||||||
**This chart is not maintained by the upstream project and any issues with the chart should be raised
|
**This chart is not maintained by the upstream project and any issues with the chart should be raised
|
||||||
[here](https://github.com/plcnk/charts/issues/new?assignees=plcnk&labels=bug&template=bug_report.yaml&name=it-tools&version=2.1.0)**
|
[here](https://github.com/plcnk/charts/issues/new?assignees=plcnk&labels=bug&template=bug_report.yaml&name=it-tools&version=2.1.1)**
|
||||||
|
|
||||||
## Source Code
|
## Source Code
|
||||||
|
|
||||||
@ -95,6 +95,7 @@ N/A
|
|||||||
| controllers.main.pod.securityContext.runAsGroup | int | `65534` | Run as `nobody` group |
|
| controllers.main.pod.securityContext.runAsGroup | int | `65534` | Run as `nobody` group |
|
||||||
| controllers.main.pod.securityContext.runAsNonRoot | bool | `true` | Run container as a non-root user |
|
| controllers.main.pod.securityContext.runAsNonRoot | bool | `true` | Run container as a non-root user |
|
||||||
| controllers.main.pod.securityContext.runAsUser | int | `65534` | Run as `nobody` user |
|
| controllers.main.pod.securityContext.runAsUser | int | `65534` | Run as `nobody` user |
|
||||||
|
| controllers.main.replicas | int | `1` | Number of desired pods |
|
||||||
| controllers.main.resources | object | `{}` | Set the resource requests / limits for the container. |
|
| controllers.main.resources | object | `{}` | Set the resource requests / limits for the container. |
|
||||||
| controllers.main.type | string | `"deployment"` | Controller type |
|
| controllers.main.type | string | `"deployment"` | Controller type |
|
||||||
| ingress.main | object | See [values.yaml](./values.yaml) | Enable and configure ingress settings for the chart under this key. |
|
| ingress.main | object | See [values.yaml](./values.yaml) | Enable and configure ingress settings for the chart under this key. |
|
||||||
|
|||||||
@ -10,6 +10,8 @@ controllers:
|
|||||||
main:
|
main:
|
||||||
# -- Controller type
|
# -- Controller type
|
||||||
type: deployment
|
type: deployment
|
||||||
|
# -- Number of desired pods
|
||||||
|
replicas: 1
|
||||||
containers:
|
containers:
|
||||||
app:
|
app:
|
||||||
image:
|
image:
|
||||||
|
|||||||
Reference in New Issue
Block a user