Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-05-04 19:40:21 +00:00
parent a6ae91aee9
commit 4fd4da267d
13 changed files with 2214 additions and 0 deletions

View File

@ -0,0 +1,13 @@
**Important:**
*for the complete changelog, please refer to the website*
## [portainer-4.0.0]portainer-4.0.0 (2023-05-04)
### Fix
- Port to new common BREAKING CHANGES ([#8755](https://github.com/truecharts/charts/issues/8755))

View File

@ -0,0 +1,26 @@
apiVersion: v2
appVersion: "2.18.1"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 12.6.1
description: Container management made easy
home: https://truecharts.org/charts/stable/portainer-ce
icon: https://truecharts.org/img/hotlink-ok/chart-icons/portainer-ce.png
keywords:
- portainer
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: portainer
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/portainer-ce
- https://docs.portainer.io/start/install-ce/server
- https://docs.portainer.io/start/install/server
version: 4.0.0
annotations:
truecharts.org/catagories: |
- management
truecharts.org/SCALE-support: "true"

View File

@ -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*

View File

@ -0,0 +1,9 @@
## [portainer-4.0.0]portainer-4.0.0 (2023-05-04)
### Fix
- Port to new common BREAKING CHANGES ([#8755](https://github.com/truecharts/charts/issues/8755))

View File

@ -0,0 +1,8 @@
Container management made easy
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/portainer](https://truecharts.org/charts/stable/portainer)
---
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.

View File

@ -0,0 +1,77 @@
image:
repository: tccr.io/truecharts/portainer-ce
tag: 2.18.1@sha256:5cf05964150cd20101e793c4cebcd4a28ea3d157c843d3a55843ab7d79278fd1
pullPolicy: IfNotPresent
imageBe:
repository: tccr.io/truecharts/portainer-be
tag: 2.18.1@sha256:24860264b69f386a5445c64bbf71104616907151c0cc28eb42b65cc342cc8b31
pullPolicy: IfNotPresent
portainer:
# Logo URL
logo: ""
# Enables Edge Compute Features
edge_compute: false
# Sets Snapshot interval
snapshot_interval: 5m
hide_labels:
# - label1=value1
# - label2=value2
serviceAccount:
main:
enabled: true
primary: true
rbac:
main:
enabled: true
primary: true
rules:
- apiGroups:
- "*"
resources:
- "*"
verbs:
- "*"
service:
main:
ports:
main:
port: 10400
protocol: https
targetPort: 9443
edge:
enabled: true
ports:
edge:
enabled: true
port: 10401
targetPort: 10401
persistence:
data:
enabled: true
mountPath: "/data"
cache:
enabled: true
mountPath: "/.cache"
type: emptyDir
portal:
open:
enabled: true
workload:
main:
podSpec:
containers:
main:
imageSelector: image
probes:
liveness:
port: 9443
scheme: https
readiness:
port: 9443
scheme: https
startup:
port: 9443
scheme: https

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}

View File

@ -0,0 +1,19 @@
{{- define "portainer.args" -}}
args:
- --tunnel-port={{ .Values.service.edge.ports.edge.port }}
- --http-disabled
{{- with .Values.portainer.logo }}
- --logo={{ . }}
{{- end }}
{{- if .Values.portainer.edge_compute }}
- --edge-compute
{{- end }}
{{- with .Values.portainer.snapshot_interval }}
- --snapshot-interval={{ . }}
{{- end }}
{{- if .Values.portainer.hide_labels }}
{{- range .Values.portainer.hide_labels }}
- --hide-label={{ . }}
{{- end }}
{{- end }}
{{- end -}}

View File

@ -0,0 +1,10 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . }}
{{- $newArgs := (include "portainer.args" . | fromYaml) }}
{{- $_ := set .Values "newArgs" $newArgs -}}
{{- $args := concat ((get .Values.workload.main.podSpec.containers.main "args") | default list) .Values.newArgs.args }}
{{- $_ := set .Values.workload.main.podSpec.containers.main "args" $args -}}
{{/* Render the templates */}}
{{ include "tc.v1.common.loader.apply" . }}

View File

View File

@ -0,0 +1,4 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/portainer-ce.png
categories:
- management