Commit released Helm Chart and docs for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2022-03-27 10:52:55 +00:00
parent 6c57c81082
commit a957b4814b
13 changed files with 640 additions and 26 deletions
+10
View File
@@ -0,0 +1,10 @@
# Changelog<br>
<a name="technitium-0.0.1"></a>
### technitium-0.0.1 (2022-03-27)
#### Feat
* add technitium ([#2299](https://github.com/truecharts/apps/issues/2299))
+7
View File
@@ -0,0 +1,7 @@
# Configuration Options
##### Connecting to other apps
If you need to connect this App to other Apps on TrueNAS SCALE, please refer to our [Linking Apps Internally](https://truecharts.org/manual/Quick-Start%20Guides/06-linking-apps/) quick-start guide.
##### Available config options
In the future this page is going to contain an automated list of options available in the installation/edit UI.
+1 -1
View File
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: "2022.02.1"
appVersion: "8.0"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
+39
View File
@@ -0,0 +1,39 @@
# Introduction
Technitium DNS Server is an open source authoritative as well as recursive DNS server that can be used for self hosting a DNS server for privacy & security.
TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation.
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)**
## Source Code
* <https://github.com/TechnitiumSoftware/DnsServer>
* <https://technitium.com/>
* <https://hub.docker.com/r/technitium/dns-server>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://library-charts.truecharts.org | common | 9.1.15 |
## Installing the Chart
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/).
## Upgrading, Rolling Back and Uninstalling the Chart
To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/).
## Support
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first.
- See the [Wiki](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/apps/issues/new/choose)
---
All Rights Reserved - The TrueCharts Project
@@ -0,0 +1,67 @@
# Default Helm-Values
TrueCharts is primarily build to supply TrueNAS SCALE Apps.
However, we also supply all Apps as standard Helm-Charts. In this document we aim to document the default values in our values.yaml file.
Most of our Apps also consume our "common" Helm Chart.
If this is the case, this means that all values.yaml values are set to the common chart values.yaml by default. This values.yaml file will only contain values that deviate from the common chart.
You will, however, be able to use all values referenced in the common chart here, besides the values listed in this document.
## Values
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| env.DNS_SERVER_ALLOW_TXT_BLOCKING_REPORT | bool | `false` | |
| env.DNS_SERVER_DOMAIN | string | `"dns-server"` | |
| env.DNS_SERVER_ENABLE_BLOCKING | bool | `false` | |
| env.DNS_SERVER_FORWARDERS | string | `"1.1.1.1, 8.8.8.8"` | |
| env.DNS_SERVER_FORWARDER_PROTOCOL | string | `"Tcp"` | |
| env.DNS_SERVER_OPTIONAL_PROTOCOL_DNS_OVER_HTTP | bool | `false` | |
| env.DNS_SERVER_PREFER_IPV6 | bool | `false` | |
| env.DNS_SERVER_RECURSION | string | `"AllowOnlyForPrivateNetworks"` | |
| env.DNS_SERVER_RECURSION_ALLOWED_NETWORKS | string | `"127.0.0.1, 192.168.1.0/24"` | |
| env.DNS_SERVER_RECURSION_DENIED_NETWORKS | string | `"1.1.1.0/24"` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"technitium/dns-server"` | |
| image.tag | string | `"8.0@sha256:37edc3d3cc4521559f5738d5152926750a498294ccef9fe264369746be87febc"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/etc/dns/config"` | |
| podSecurityContext.runAsGroup | int | `0` | |
| podSecurityContext.runAsUser | int | `0` | |
| secret.DNS_SERVER_ADMIN_PASSWORD | string | `"password"` | |
| securityContext.allowPrivilegeEscalation | bool | `true` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | |
| securityContext.runAsNonRoot | bool | `false` | |
| service.dns-cert.enabled | bool | `true` | |
| service.dns-cert.ports.dns-cert.enabled | bool | `true` | |
| service.dns-cert.ports.dns-cert.port | int | `10202` | |
| service.dns-cert.ports.dns-cert.protocol | string | `"TCP"` | |
| service.dns-cert.ports.dns-cert.targetPort | int | `80` | |
| service.dns-https-proxy.enabled | bool | `true` | |
| service.dns-https-proxy.ports.dns-https-proxy.enabled | bool | `true` | |
| service.dns-https-proxy.ports.dns-https-proxy.port | int | `10204` | |
| service.dns-https-proxy.ports.dns-https-proxy.protocol | string | `"TCP"` | |
| service.dns-https-proxy.ports.dns-https-proxy.targetPort | int | `8053` | |
| service.dns-https.enabled | bool | `true` | |
| service.dns-https.ports.dns-https.enabled | bool | `true` | |
| service.dns-https.ports.dns-https.port | int | `10203` | |
| service.dns-https.ports.dns-https.protocol | string | `"TCP"` | |
| service.dns-https.ports.dns-https.targetPort | int | `443` | |
| service.dns-tcp.enabled | bool | `true` | |
| service.dns-tcp.ports.dns-tcp.enabled | bool | `true` | |
| service.dns-tcp.ports.dns-tcp.port | int | `53` | |
| service.dns-tcp.ports.dns-tcp.targetPort | int | `53` | |
| service.dns-tls.enabled | bool | `true` | |
| service.dns-tls.ports.dns-tls.enabled | bool | `true` | |
| service.dns-tls.ports.dns-tls.port | int | `853` | |
| service.dns-tls.ports.dns-tls.protocol | string | `"TCP"` | |
| service.dns-tls.ports.dns-tls.targetPort | int | `853` | |
| service.dns-udp.enabled | bool | `true` | |
| service.dns-udp.ports.dns-udp.enabled | bool | `true` | |
| service.dns-udp.ports.dns-udp.port | int | `53` | |
| service.dns-udp.ports.dns-udp.protocol | string | `"UDP"` | |
| service.dns-udp.ports.dns-udp.targetPort | int | `53` | |
| service.main.ports.main.port | int | `5380` | |
| service.main.ports.main.targetPort | int | `5380` | |
All Rights Reserved - The TrueCharts Project
File diff suppressed because one or more lines are too long
@@ -0,0 +1,10 @@
# Changelog<br>
<a name="technitium-0.0.1"></a>
### technitium-0.0.1 (2022-03-27)
#### Feat
* add technitium ([#2299](https://github.com/truecharts/apps/issues/2299))
+7
View File
@@ -0,0 +1,7 @@
# Configuration Options
##### Connecting to other apps
If you need to connect this App to other Apps on TrueNAS SCALE, please refer to our [Linking Apps Internally](https://truecharts.org/manual/Quick-Start%20Guides/06-linking-apps/) quick-start guide.
##### Available config options
In the future this page is going to contain an automated list of options available in the installation/edit UI.
@@ -0,0 +1,67 @@
# Default Helm-Values
TrueCharts is primarily build to supply TrueNAS SCALE Apps.
However, we also supply all Apps as standard Helm-Charts. In this document we aim to document the default values in our values.yaml file.
Most of our Apps also consume our "common" Helm Chart.
If this is the case, this means that all values.yaml values are set to the common chart values.yaml by default. This values.yaml file will only contain values that deviate from the common chart.
You will, however, be able to use all values referenced in the common chart here, besides the values listed in this document.
## Values
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| env.DNS_SERVER_ALLOW_TXT_BLOCKING_REPORT | bool | `false` | |
| env.DNS_SERVER_DOMAIN | string | `"dns-server"` | |
| env.DNS_SERVER_ENABLE_BLOCKING | bool | `false` | |
| env.DNS_SERVER_FORWARDERS | string | `"1.1.1.1, 8.8.8.8"` | |
| env.DNS_SERVER_FORWARDER_PROTOCOL | string | `"Tcp"` | |
| env.DNS_SERVER_OPTIONAL_PROTOCOL_DNS_OVER_HTTP | bool | `false` | |
| env.DNS_SERVER_PREFER_IPV6 | bool | `false` | |
| env.DNS_SERVER_RECURSION | string | `"AllowOnlyForPrivateNetworks"` | |
| env.DNS_SERVER_RECURSION_ALLOWED_NETWORKS | string | `"127.0.0.1, 192.168.1.0/24"` | |
| env.DNS_SERVER_RECURSION_DENIED_NETWORKS | string | `"1.1.1.0/24"` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"technitium/dns-server"` | |
| image.tag | string | `"8.0@sha256:37edc3d3cc4521559f5738d5152926750a498294ccef9fe264369746be87febc"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/etc/dns/config"` | |
| podSecurityContext.runAsGroup | int | `0` | |
| podSecurityContext.runAsUser | int | `0` | |
| secret.DNS_SERVER_ADMIN_PASSWORD | string | `"password"` | |
| securityContext.allowPrivilegeEscalation | bool | `true` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | |
| securityContext.runAsNonRoot | bool | `false` | |
| service.dns-cert.enabled | bool | `true` | |
| service.dns-cert.ports.dns-cert.enabled | bool | `true` | |
| service.dns-cert.ports.dns-cert.port | int | `10202` | |
| service.dns-cert.ports.dns-cert.protocol | string | `"TCP"` | |
| service.dns-cert.ports.dns-cert.targetPort | int | `80` | |
| service.dns-https-proxy.enabled | bool | `true` | |
| service.dns-https-proxy.ports.dns-https-proxy.enabled | bool | `true` | |
| service.dns-https-proxy.ports.dns-https-proxy.port | int | `10204` | |
| service.dns-https-proxy.ports.dns-https-proxy.protocol | string | `"TCP"` | |
| service.dns-https-proxy.ports.dns-https-proxy.targetPort | int | `8053` | |
| service.dns-https.enabled | bool | `true` | |
| service.dns-https.ports.dns-https.enabled | bool | `true` | |
| service.dns-https.ports.dns-https.port | int | `10203` | |
| service.dns-https.ports.dns-https.protocol | string | `"TCP"` | |
| service.dns-https.ports.dns-https.targetPort | int | `443` | |
| service.dns-tcp.enabled | bool | `true` | |
| service.dns-tcp.ports.dns-tcp.enabled | bool | `true` | |
| service.dns-tcp.ports.dns-tcp.port | int | `53` | |
| service.dns-tcp.ports.dns-tcp.targetPort | int | `53` | |
| service.dns-tls.enabled | bool | `true` | |
| service.dns-tls.ports.dns-tls.enabled | bool | `true` | |
| service.dns-tls.ports.dns-tls.port | int | `853` | |
| service.dns-tls.ports.dns-tls.protocol | string | `"TCP"` | |
| service.dns-tls.ports.dns-tls.targetPort | int | `853` | |
| service.dns-udp.enabled | bool | `true` | |
| service.dns-udp.ports.dns-udp.enabled | bool | `true` | |
| service.dns-udp.ports.dns-udp.port | int | `53` | |
| service.dns-udp.ports.dns-udp.protocol | string | `"UDP"` | |
| service.dns-udp.ports.dns-udp.targetPort | int | `53` | |
| service.main.ports.main.port | int | `5380` | |
| service.main.ports.main.targetPort | int | `5380` | |
All Rights Reserved - The TrueCharts Project
+39
View File
@@ -0,0 +1,39 @@
# Introduction
Technitium DNS Server is an open source authoritative as well as recursive DNS server that can be used for self hosting a DNS server for privacy & security.
TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation.
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)**
## Source Code
* <https://github.com/TechnitiumSoftware/DnsServer>
* <https://technitium.com/>
* <https://hub.docker.com/r/technitium/dns-server>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://library-charts.truecharts.org | common | 9.1.15 |
## Installing the Chart
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/).
## Upgrading, Rolling Back and Uninstalling the Chart
To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/).
## Support
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first.
- See the [Wiki](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/apps/issues/new/choose)
---
All Rights Reserved - The TrueCharts Project
File diff suppressed because one or more lines are too long
+21 -24
View File
@@ -12,9 +12,9 @@ hide:
##### Scan Results
#### Chart Object: ml-workspace/templates/common.yaml
| Type | Misconfiguration ID | Check | Severity | Explaination | Links |
|:----------------|:------------------:|:-----------:|:------------------:|-----------------------------------------|-----------------------------------------|
| Kubernetes Security Check | KSV001 | Process can elevate its own privileges | MEDIUM | <details><summary>Expand...</summary> A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node. <br> <hr> <br> Container &#39;hostpatch&#39; of Deployment &#39;RELEASE-NAME-ml-workspace&#39; should set &#39;securityContext.allowPrivilegeEscalation&#39; to false </details>| <details><summary>Expand...</summary><a href="https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted">https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted</a><br><a href="https://avd.aquasec.com/appshield/ksv001">https://avd.aquasec.com/appshield/ksv001</a><br></details> |
@@ -52,35 +52,35 @@ hide:
#### Container: tccr.io/truecharts/alpine:v3.15.2@sha256:29ed3480a0ee43f7af681fed5d4fc215516abf1c41eade6938b26d8c9c2c7583 (alpine 3.15.2)
**alpine**
| No Vulnerabilities found |
|:---------------------------------|
#### Container: tccr.io/truecharts/alpine:v3.15.2@sha256:29ed3480a0ee43f7af681fed5d4fc215516abf1c41eade6938b26d8c9c2c7583 (alpine 3.15.2)
**alpine**
| No Vulnerabilities found |
|:---------------------------------|
#### Container: mltooling/ml-workspace:0.13.2@sha256:5dfc8928059eb9d6d2bc33d7947e99b6bb38c2beaa40029afb73596a9c08c134 (ubuntu 20.04)
**ubuntu**
| Package | Vulnerability | Severity | Installed Version | Fixed Version | Links |
|:----------------|:------------------:|:-----------:|:------------------:|:-------------:|-----------------------------------------|
| apache2-utils | CVE-2019-17567 | MEDIUM | 2.4.41-4ubuntu3.3 | | <details><summary>Expand...</summary><a href="http://httpd.apache.org/security/vulnerabilities_24.html">http://httpd.apache.org/security/vulnerabilities_24.html</a><br><a href="http://www.openwall.com/lists/oss-security/2021/06/10/2">http://www.openwall.com/lists/oss-security/2021/06/10/2</a><br><a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-17567">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-17567</a><br><a href="https://httpd.apache.org/security/vulnerabilities_24.html">https://httpd.apache.org/security/vulnerabilities_24.html</a><br><a href="https://httpd.apache.org/security/vulnerabilities_24.html#CVE-2019-17567">https://httpd.apache.org/security/vulnerabilities_24.html#CVE-2019-17567</a><br><a href="https://lists.apache.org/thread.html/r7f2b70b621651548f4b6f027552f1dd91705d7111bb5d15cda0a68dd@%3Cdev.httpd.apache.org%3E">https://lists.apache.org/thread.html/r7f2b70b621651548f4b6f027552f1dd91705d7111bb5d15cda0a68dd@%3Cdev.httpd.apache.org%3E</a><br><a href="https://lists.apache.org/thread.html/r90f693a5c9fb75550ef1412436d5e682a5f845beb427fa6f23419a3c@%3Cannounce.httpd.apache.org%3E">https://lists.apache.org/thread.html/r90f693a5c9fb75550ef1412436d5e682a5f845beb427fa6f23419a3c@%3Cannounce.httpd.apache.org%3E</a><br><a href="https://lists.apache.org/thread.html/re026d3da9d7824bd93b9f871c0fdda978d960c7e62d8c43cba8d0bf3%40%3Ccvs.httpd.apache.org%3E">https://lists.apache.org/thread.html/re026d3da9d7824bd93b9f871c0fdda978d960c7e62d8c43cba8d0bf3%40%3Ccvs.httpd.apache.org%3E</a><br><a href="https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPBR6WUYBJNACHKE65SPL7TJOHX7RHWD/">https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPBR6WUYBJNACHKE65SPL7TJOHX7RHWD/</a><br><a href="https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZNCYSR3BXT36FFF4XTCPL3HDQK4VP45R/">https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZNCYSR3BXT36FFF4XTCPL3HDQK4VP45R/</a><br><a href="https://security.gentoo.org/glsa/202107-38">https://security.gentoo.org/glsa/202107-38</a><br><a href="https://security.netapp.com/advisory/ntap-20210702-0001/">https://security.netapp.com/advisory/ntap-20210702-0001/</a><br><a href="https://www.oracle.com/security-alerts/cpuoct2021.html">https://www.oracle.com/security-alerts/cpuoct2021.html</a><br></details> |
@@ -1076,15 +1076,15 @@ hide:
**jar**
| No Vulnerabilities found |
|:---------------------------------|
**node-pkg**
| Package | Vulnerability | Severity | Installed Version | Fixed Version | Links |
|:----------------|:------------------:|:-----------:|:------------------:|:-------------:|-----------------------------------------|
| @npmcli/arborist | CVE-2021-39134 | HIGH | 2.6.4 | 2.8.2 | <details><summary>Expand...</summary><a href="https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf">https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf</a><br><a href="https://github.com/advisories/GHSA-2h3h-q99f-3fhc">https://github.com/advisories/GHSA-2h3h-q99f-3fhc</a><br><a href="https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc">https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc</a><br><a href="https://nvd.nist.gov/vuln/detail/CVE-2021-39134">https://nvd.nist.gov/vuln/detail/CVE-2021-39134</a><br><a href="https://www.npmjs.com/package/@npmcli/arborist">https://www.npmjs.com/package/@npmcli/arborist</a><br><a href="https://www.oracle.com/security-alerts/cpuoct2021.html">https://www.oracle.com/security-alerts/cpuoct2021.html</a><br></details> |
@@ -1132,7 +1132,7 @@ hide:
**python-pkg**
| Package | Vulnerability | Severity | Installed Version | Fixed Version | Links |
|:----------------|:------------------:|:-----------:|:------------------:|:-------------:|-----------------------------------------|
| Glances | CVE-2021-23418 | CRITICAL | 3.1.7 | 3.2.1 | <details><summary>Expand...</summary><a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23418">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23418</a><br><a href="https://github.com/advisories/GHSA-r2mj-8wgq-73m6">https://github.com/advisories/GHSA-r2mj-8wgq-73m6</a><br><a href="https://github.com/nicolargo/glances/commit/4b87e979afdc06d98ed1b48da31e69eaa3a9fb94">https://github.com/nicolargo/glances/commit/4b87e979afdc06d98ed1b48da31e69eaa3a9fb94</a><br><a href="https://github.com/nicolargo/glances/commit/85d5a6b4af31fcf785d5a61086cbbd166b40b07a">https://github.com/nicolargo/glances/commit/85d5a6b4af31fcf785d5a61086cbbd166b40b07a</a><br><a href="https://github.com/nicolargo/glances/commit/9d6051be4a42f692392049fdbfc85d5dfa458b32">https://github.com/nicolargo/glances/commit/9d6051be4a42f692392049fdbfc85d5dfa458b32</a><br><a href="https://github.com/nicolargo/glances/issues/1025">https://github.com/nicolargo/glances/issues/1025</a><br><a href="https://nvd.nist.gov/vuln/detail/CVE-2021-23418">https://nvd.nist.gov/vuln/detail/CVE-2021-23418</a><br><a href="https://snyk.io/vuln/SNYK-PYTHON-GLANCES-1311807">https://snyk.io/vuln/SNYK-PYTHON-GLANCES-1311807</a><br></details> |
@@ -1348,22 +1348,22 @@ hide:
**gobinary**
| No Vulnerabilities found |
|:---------------------------------|
**gobinary**
| Package | Vulnerability | Severity | Installed Version | Fixed Version | Links |
|:----------------|:------------------:|:-----------:|:------------------:|:-------------:|-----------------------------------------|
| github.com/prometheus/prometheus | CVE-2019-3826 | MEDIUM | v2.5.0+incompatible | v2.7.1 | <details><summary>Expand...</summary><a href="https://access.redhat.com/errata/RHBA-2019:0327">https://access.redhat.com/errata/RHBA-2019:0327</a><br><a href="https://advisory.checkmarx.net/advisory/CX-2019-4297">https://advisory.checkmarx.net/advisory/CX-2019-4297</a><br><a href="https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3826">https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3826</a><br><a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3826">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3826</a><br><a href="https://github.com/prometheus/prometheus/commit/62e591f9">https://github.com/prometheus/prometheus/commit/62e591f9</a><br><a href="https://github.com/prometheus/prometheus/pull/5163">https://github.com/prometheus/prometheus/pull/5163</a><br><a href="https://lists.apache.org/thread.html/r48d5019bd42e0770f7e5351e420a63a41ff1f16924942442c6aff6a8@%3Ccommits.zookeeper.apache.org%3E">https://lists.apache.org/thread.html/r48d5019bd42e0770f7e5351e420a63a41ff1f16924942442c6aff6a8@%3Ccommits.zookeeper.apache.org%3E</a><br><a href="https://lists.apache.org/thread.html/r8e3f7da12bf5750b0a02e69a78a61073a2ac950eed7451ce70a65177@%3Ccommits.zookeeper.apache.org%3E">https://lists.apache.org/thread.html/r8e3f7da12bf5750b0a02e69a78a61073a2ac950eed7451ce70a65177@%3Ccommits.zookeeper.apache.org%3E</a><br><a href="https://lists.apache.org/thread.html/rdf2a0d94c3b5b523aeff7741ae71347415276062811b687f30ea6573@%3Ccommits.zookeeper.apache.org%3E">https://lists.apache.org/thread.html/rdf2a0d94c3b5b523aeff7741ae71347415276062811b687f30ea6573@%3Ccommits.zookeeper.apache.org%3E</a><br><a href="https://nvd.nist.gov/vuln/detail/CVE-2019-3826">https://nvd.nist.gov/vuln/detail/CVE-2019-3826</a><br></details> |
**gobinary**
| Package | Vulnerability | Severity | Installed Version | Fixed Version | Links |
|:----------------|:------------------:|:-----------:|:------------------:|:-------------:|-----------------------------------------|
| github.com/dgrijalva/jwt-go | CVE-2020-26160 | HIGH | v3.2.0+incompatible | | <details><summary>Expand...</summary><a href="https://github.com/dgrijalva/jwt-go/pull/426">https://github.com/dgrijalva/jwt-go/pull/426</a><br><a href="https://nvd.nist.gov/vuln/detail/CVE-2020-26160">https://nvd.nist.gov/vuln/detail/CVE-2020-26160</a><br><a href="https://snyk.io/vuln/SNYK-GOLANG-GITHUBCOMDGRIJALVAJWTGO-596515">https://snyk.io/vuln/SNYK-GOLANG-GITHUBCOMDGRIJALVAJWTGO-596515</a><br></details> |
@@ -1376,17 +1376,14 @@ hide:
**gobinary**
| No Vulnerabilities found |
|:---------------------------------|
**gobinary**
| No Vulnerabilities found |
|:---------------------------------|
+36 -1
View File
@@ -77600,6 +77600,41 @@ entries:
urls:
- https://github.com/truecharts/apps/releases/download/teamspeak3-2.0.21/teamspeak3-2.0.21.tgz
version: 2.0.21
technitium:
- annotations:
truecharts.org/SCALE-support: "true"
truecharts.org/catagories: |
- networking
truecharts.org/grade: U
apiVersion: v2
appVersion: "8.0"
created: "2022-03-27T10:47:50.672935461Z"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 9.1.15
description: Technitium DNS Server is an open source authoritative as well as
recursive DNS server that can be used for self hosting a DNS server for privacy
& security.
digest: ea8c2b615a4b1da53520cb980e4b8cbb6cce7bd2a0232841f56892329e77f17f
home: https://github.com/truecharts/apps/tree/master/charts/stable/technitium
icon: https://truecharts.org/_static/img/appicons/technitium.png
keywords:
- DNS
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: technitium
sources:
- https://github.com/TechnitiumSoftware/DnsServer
- https://technitium.com/
- https://hub.docker.com/r/technitium/dns-server
type: application
urls:
- https://github.com/truecharts/apps/releases/download/technitium-0.0.1/technitium-0.0.1.tgz
version: 0.0.1
teedy:
- annotations:
truecharts.org/SCALE-support: "true"
@@ -85558,4 +85593,4 @@ entries:
urls:
- https://github.com/truecharts/apps/releases/download/zwavejs2mqtt-9.0.24/zwavejs2mqtt-9.0.24.tgz
version: 9.0.24
generated: "2022-03-27T10:05:41.636741203Z"
generated: "2022-03-27T10:47:50.685483303Z"