TrueChartsClone/charts/stable/kometa/values.yaml

70 lines
1.5 KiB
YAML
Raw Normal View History

fix(kometa) converted pmm to kometa and added into incubator (#21444) **Description** PMM has rebranded to Kometa so I've renamed pmm to kometa and fixed the images and links to align with Kometa instead. ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [x] ⚙️ Feature/App addition **🧪 How Has This Been Tested?** I haven't tested anything as I don't really know how to so please advice me how. **📃 Notes:** The one thing I was unsure about is the tag: inside values.yaml where it was set to a specific version and then a SHA number. I didn't know where to find this so I set the tag to latest which is the tag i would use if i deployed this app myself through custom-app or docker image. **✔️ Checklist:** - [x] ⚖️ My code follows the style guidelines of this project - [x] 👀 I have performed a self-review of my own code - [x] #️⃣ I have commented my code, particularly in hard-to-understand areas - [x] 📄 I have made corresponding changes to the documentation - [x] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [x] ⬆️ I increased versions for any altered app according to semantic versioning - [x] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):` or `chore(chart-name):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [x] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._
2024-04-30 18:16:52 +00:00
image:
repository: kometateam/kometa
tag: v2.0.1@sha256:c1f9d1ef49f976377a4bbbe9018bfed9a7057ccf427d10759a8ad975d4505300
fix(kometa) converted pmm to kometa and added into incubator (#21444) **Description** PMM has rebranded to Kometa so I've renamed pmm to kometa and fixed the images and links to align with Kometa instead. ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [x] ⚙️ Feature/App addition **🧪 How Has This Been Tested?** I haven't tested anything as I don't really know how to so please advice me how. **📃 Notes:** The one thing I was unsure about is the tag: inside values.yaml where it was set to a specific version and then a SHA number. I didn't know where to find this so I set the tag to latest which is the tag i would use if i deployed this app myself through custom-app or docker image. **✔️ Checklist:** - [x] ⚖️ My code follows the style guidelines of this project - [x] 👀 I have performed a self-review of my own code - [x] #️⃣ I have commented my code, particularly in hard-to-understand areas - [x] 📄 I have made corresponding changes to the documentation - [x] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [x] ⬆️ I increased versions for any altered app according to semantic versioning - [x] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):` or `chore(chart-name):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [x] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._
2024-04-30 18:16:52 +00:00
pullPolicy: IfNotPresent
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
service:
main:
enabled: false
ports:
main:
enabled: false
kometa:
run: false
no_countdown: true
time:
- "00:00"
# plex_url: ""
# plex_token: ""
workload:
main:
podSpec:
initContainers:
create-init-config-file:
enabled: true
type: init
imageSelector: "image"
command:
- /bin/sh
- -c
args:
- |
echo "Creating config.yml file..."
if [ -f /config/config.yml ]; then
echo "Config file exists! Skipping..."
else
echo "Config file is missing, getting a new one!"
curl -fLvo /config/config.yml https://raw.githubusercontent.com/kometa-team/kometa/master/config/config.yml.template || (echo "Downloading config file, FAILED..." && exit 1)
fi
containers:
main:
probes:
liveness:
enabled: false
readiness:
enabled: false
startup:
enabled: false
envFrom:
- secretRef:
name: "secret"
persistence:
config:
enabled: true
mountPath: /config
targetSelectAll: true
portal:
open:
enabled: false