Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
9c2f104c13
commit
08482e30fe
|
@ -0,0 +1,13 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [mongo-express-0.0.1]mongo-express-0.0.1 (2023-04-30)
|
||||
|
||||
### Feat
|
||||
|
||||
- Add mongo-express ([#8158](https://github.com/truecharts/charts/issues/8158))
|
||||
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
apiVersion: v2
|
||||
appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 12.6.1
|
||||
- condition: mongodb.enabled
|
||||
name: mongodb
|
||||
repository: https://deps.truecharts.org/
|
||||
version: 6.0.15
|
||||
deprecated: false
|
||||
description: mongo-express is a web-based MongoDB admin interface written in Node.js, Express.js, and Bootstrap3.
|
||||
home: https://truecharts.org/charts/incubator
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/mongo-express.png
|
||||
keywords:
|
||||
- mongo
|
||||
- mongodb
|
||||
- database
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: mongo-express
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/mongo-express
|
||||
- https://hub.docker.com/_/mongo-express/
|
||||
- https://github.com/mongo-express/mongo-express
|
||||
type: application
|
||||
version: 0.0.1
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- database
|
||||
- utilities
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1,27 @@
|
|||
# README
|
||||
|
||||
## General Info
|
||||
|
||||
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
|
||||
However only installations using the TrueNAS SCALE Apps system are supported.
|
||||
|
||||
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/stable/)
|
||||
|
||||
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
|
||||
|
||||
|
||||
## Support
|
||||
|
||||
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE%20Apps/Important-MUST-READ).
|
||||
- See the [Website](https://truecharts.org)
|
||||
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
|
||||
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
|
||||
|
||||
---
|
||||
|
||||
## Sponsor TrueCharts
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
||||
|
||||
*All Rights Reserved - The TrueCharts Project*
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [mongo-express-0.0.1]mongo-express-0.0.1 (2023-04-30)
|
||||
|
||||
### Feat
|
||||
|
||||
- Add mongo-express ([#8158](https://github.com/truecharts/charts/issues/8158))
|
||||
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
mongo-express is a web-based MongoDB admin interface written in Node.js, Express.js, and Bootstrap3.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/mongo-express](https://truecharts.org/charts/incubator/mongo-express)
|
||||
|
||||
---
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,53 @@
|
|||
image:
|
||||
repository: docker.io/mongo-express
|
||||
pullPolicy: IfNotPresent
|
||||
tag: latest@sha256:d5cee110909938c99cf8800b9379494c190d8fecaec70a4ce3886facdee6ef8e
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
protocol: http
|
||||
targetPort: 8081
|
||||
port: 18081
|
||||
|
||||
securityContext:
|
||||
container:
|
||||
readOnlyRootFilesystem: false
|
||||
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
probes:
|
||||
liveness:
|
||||
type: http
|
||||
httpHeaders:
|
||||
Authorization: '{{ printf "Basic %s" ((printf "%s:%s" .Values.workload.main.podSpec.containers.main.env.ME_CONFIG_BASICAUTH_USERNAME .Values.workload.main.podSpec.containers.main.env.ME_CONFIG_BASICAUTH_PASSWORD) | b64enc) }}'
|
||||
readiness:
|
||||
type: http
|
||||
httpHeaders:
|
||||
Authorization: '{{ printf "Basic %s" ((printf "%s:%s" .Values.workload.main.podSpec.containers.main.env.ME_CONFIG_BASICAUTH_USERNAME .Values.workload.main.podSpec.containers.main.env.ME_CONFIG_BASICAUTH_PASSWORD) | b64enc) }}'
|
||||
startup:
|
||||
type: http
|
||||
httpHeaders:
|
||||
Authorization: '{{ printf "Basic %s" ((printf "%s:%s" .Values.workload.main.podSpec.containers.main.env.ME_CONFIG_BASICAUTH_USERNAME .Values.workload.main.podSpec.containers.main.env.ME_CONFIG_BASICAUTH_PASSWORD) | b64enc) }}'
|
||||
|
||||
env:
|
||||
ME_CONFIG_MONGODB_PORT: ""
|
||||
ME_CONFIG_MONGODB_SERVER: ""
|
||||
ME_CONFIG_BASICAUTH_USERNAME: ""
|
||||
ME_CONFIG_BASICAUTH_PASSWORD: ""
|
||||
# https://codemirror.net/5/demo/theme.html
|
||||
ME_CONFIG_OPTIONS_EDITORTHEME: default
|
||||
ME_CONFIG_MONGODB_AUTH_DATABASE: ""
|
||||
ME_CONFIG_MONGODB_AUTH_USERNAME: ""
|
||||
ME_CONFIG_MONGODB_AUTH_PASSWORD: ""
|
||||
|
||||
mongodb:
|
||||
enabled: false
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: true
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
|||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -0,0 +1 @@
|
|||
{{ include "tc.v1.common.loader.all" . }}
|
|
@ -0,0 +1,5 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/mongo-express.png
|
||||
categories:
|
||||
- database
|
||||
- utilities
|
||||
|
Loading…
Reference in New Issue