feat: support open-webui charts
This commit is contained in:
26
open-webui/charts/tika/.asf.yaml
Normal file
26
open-webui/charts/tika/.asf.yaml
Normal file
@ -0,0 +1,26 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
github:
|
||||
description: "A Helm chart to deploy Apache Tika on Kubernetes."
|
||||
homepage: https://tika.apache.org/
|
||||
labels:
|
||||
- helm
|
||||
- chart
|
||||
- tika
|
||||
|
||||
notifications:
|
||||
commits: commits@tika.apache.org
|
||||
issues: dev@tika.apache.org
|
||||
pullrequests: dev@tika.apache.org
|
||||
jira_options: link label comment
|
||||
83
open-webui/charts/tika/.github/workflows/lint-test.yaml
vendored
Normal file
83
open-webui/charts/tika/.github/workflows/lint-test.yaml
vendored
Normal file
@ -0,0 +1,83 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
name: Lint and Test Charts
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
types: [opened, synchronize, reopened]
|
||||
|
||||
jobs:
|
||||
lint-test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.5
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Set up Helm
|
||||
uses: azure/setup-helm@v4.2.0
|
||||
- uses: actions/setup-python@v5.1.0
|
||||
with:
|
||||
python-version: '3.x'
|
||||
check-latest: true
|
||||
- name: Set up chart-testing
|
||||
uses: helm/chart-testing-action@v2.6.1
|
||||
- name: Run chart-testing (list-changed)
|
||||
id: list-changed
|
||||
run: |
|
||||
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
|
||||
if [[ -n "$changed" ]]; then
|
||||
echo "::set-output name=changed::true"
|
||||
fi
|
||||
shell: bash
|
||||
- name: Run chart-testing (lint)
|
||||
run: ct lint --target-branch ${{ github.event.repository.default_branch }} --charts .
|
||||
shell: bash
|
||||
- name: Create kind cluster
|
||||
uses: helm/kind-action@v1.10.0
|
||||
if: steps.list-changed.outputs.changed == 'true'
|
||||
- name: Uninstall helm-unittest if present
|
||||
run: |
|
||||
helm plugin uninstall unittest >/dev/null 2>/dev/null \
|
||||
|| echo "Failed to uninstall plugin, assuming it's not present."
|
||||
shell: bash
|
||||
- name: Install latest helm-unittest
|
||||
run: |
|
||||
echo "Installing latest version of helm-unittest"
|
||||
helm plugin install https://github.com/helm-unittest/helm-unittest >/dev/null 2>/dev/null
|
||||
shell: bash
|
||||
- name: Assemble list of chart directories to test
|
||||
run: |
|
||||
tr ' ' '\n' <<< . | grep -v '^$' > charts-to-test || true
|
||||
find . -type f -name 'Chart.yaml' -exec dirname {} \; > all-charts
|
||||
[ -z . ] && mv all-charts charts-to-test || true
|
||||
shell: bash
|
||||
- name: Fetch chart dependencies
|
||||
run: |
|
||||
for chart in $(cat charts-to-test); do
|
||||
helm dependency update "$chart" >/dev/null
|
||||
done
|
||||
shell: bash
|
||||
- name: Run unit tests
|
||||
run: helm unittest --color $(cat charts-to-test)
|
||||
shell: bash
|
||||
- name: Run chart-testing (install)
|
||||
if: steps.list-changed.outputs.changed == 'true'
|
||||
run: ct install --target-branch ${{ github.event.repository.default_branch }} --charts .
|
||||
shell: bash
|
||||
44
open-webui/charts/tika/.github/workflows/pluto.yaml
vendored
Normal file
44
open-webui/charts/tika/.github/workflows/pluto.yaml
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
name: Use Pluto to check helm chart for resources using deprecated k8s APIs
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
types: [opened, synchronize, reopened]
|
||||
|
||||
jobs:
|
||||
pluto_detect:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
PLUTO_VERSION: 5.19.1
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.5
|
||||
- name: Download Pluto
|
||||
run: |
|
||||
wget https://github.com/FairwindsOps/pluto/releases/download/v${{ env.PLUTO_VERSION }}/pluto_${{ env.PLUTO_VERSION }}_linux_amd64.tar.gz -O - | tar -xz
|
||||
mv pluto /usr/local/bin/pluto
|
||||
chmod +x /usr/local/bin/pluto
|
||||
shell: bash
|
||||
- name: Set up Helm
|
||||
uses: azure/setup-helm@v4.2.0
|
||||
- name: verify helm chart
|
||||
run: |
|
||||
helm template . | pluto detect -omarkdown - >> $GITHUB_STEP_SUMMARY
|
||||
shell: bash
|
||||
24
open-webui/charts/tika/.helmignore
Normal file
24
open-webui/charts/tika/.helmignore
Normal file
@ -0,0 +1,24 @@
|
||||
# Patterns to ignore when building packages.
|
||||
# This supports shell glob matching, relative path matching, and
|
||||
# negation (prefixed with !). Only one pattern per line.
|
||||
.DS_Store
|
||||
# Common VCS dirs
|
||||
.git/
|
||||
.gitignore
|
||||
.bzr/
|
||||
.bzrignore
|
||||
.hg/
|
||||
.hgignore
|
||||
.svn/
|
||||
# Common backup files
|
||||
*.swp
|
||||
*.bak
|
||||
*.tmp
|
||||
*.orig
|
||||
*~
|
||||
# Various IDEs
|
||||
.project
|
||||
.idea/
|
||||
*.tmproj
|
||||
.vscode/
|
||||
tests
|
||||
52
open-webui/charts/tika/Chart.yaml
Normal file
52
open-webui/charts/tika/Chart.yaml
Normal file
@ -0,0 +1,52 @@
|
||||
annotations:
|
||||
artifacthub.io/category: integration-delivery
|
||||
artifacthub.io/containsSecurityUpdates: "false"
|
||||
artifacthub.io/license: Apache-2.0
|
||||
artifacthub.io/links: |
|
||||
- name: support
|
||||
url: https://issues.apache.org/jira/browse/TIKA
|
||||
artifacthub.io/prerelease: "false"
|
||||
artifacthub.io/recommendations: |
|
||||
- url: https://artifacthub.io/packages/helm/apache-solr/solr
|
||||
- url: https://artifacthub.io/packages/helm/apache-airflow/airflow
|
||||
apiVersion: v2
|
||||
appVersion: 3.2.2.0-full
|
||||
description: The official Helm chart for Apache Tika
|
||||
home: https://tika.apache.org
|
||||
icon: https://tika.apache.org/tika.png
|
||||
keywords:
|
||||
- apache
|
||||
- tika
|
||||
- apache-tika
|
||||
- tika-helm
|
||||
maintainers:
|
||||
- email: lewismc@apache.org
|
||||
name: lewismc
|
||||
url: https://github.com/lewismc
|
||||
- name: stijnbrouwers
|
||||
url: https://github.com/stijnbrouwers
|
||||
- name: philipsoutham
|
||||
url: https://github.com/philipsoutham
|
||||
- name: frascu
|
||||
url: https://github.com/frascu
|
||||
- name: euven
|
||||
url: https://github.com/euven
|
||||
- name: ps0uth
|
||||
url: https://github.com/ps0uth
|
||||
- name: ahilmathew
|
||||
url: https://github.com/ahilmathew
|
||||
- name: aidanthewiz
|
||||
url: https://github.com/aidanthewiz
|
||||
- name: bartek
|
||||
url: https://github.com/bartek
|
||||
- name: CiraciNicolo
|
||||
url: https://github.com/CiraciNicolo
|
||||
- name: amalucelli
|
||||
url: https://github.com/amalucelli
|
||||
- name: thatmlopsguy
|
||||
url: https://github.com/thatmlopsguy
|
||||
name: tika
|
||||
sources:
|
||||
- https://github.com/apache/tika-helm
|
||||
type: application
|
||||
version: 3.2.2
|
||||
5737
open-webui/charts/tika/LICENSE.txt
Normal file
5737
open-webui/charts/tika/LICENSE.txt
Normal file
File diff suppressed because it is too large
Load Diff
159
open-webui/charts/tika/README.md
Normal file
159
open-webui/charts/tika/README.md
Normal file
@ -0,0 +1,159 @@
|
||||
tika-helm
|
||||
=========
|
||||
|
||||
[](https://artifacthub.io/packages/search?repo=apache-tika)
|
||||
|
||||
<div class="artifacthub-widget" data-url="https://artifacthub.io/packages/helm/apache-tika/tika" data-theme="light" data-header="true" data-stars="true" data-responsive="false"><blockquote><p lang="en" dir="ltr"><b>tika</b>: The official Helm chart to deploy Apache Tika on Kubernetes</p>— Open in <a href="https://artifacthub.io/packages/helm/apache-tika/tika">Artifact Hub</a></blockquote></div><script async src="https://artifacthub.io/artifacthub-widget.js"></script>
|
||||
|
||||
A [Helm chart][] to deploy [Apache Tika][] on [Kubernetes][].
|
||||
|
||||
<img src="https://tika.apache.org/tika.png" width="300" />
|
||||
|
||||
This Helm chart is a lightweight way to configure and run the official [apache/tika][] Docker image.
|
||||
|
||||
We recommend that the Helm chart version is aligned to the version Tika (and subsequently the
|
||||
version of the [Tika Docker image][]) you want to deploy.
|
||||
This will ensure that you using a chart version that has been tested against the corresponding
|
||||
production version. This will also ensure that the documentation and examples for the chart
|
||||
will work with the version of Tika you are installing.
|
||||
|
||||
<!-- development warning placeholder -->
|
||||
**Warning**: This branch is used for development, please use the [latest release][] for released version.
|
||||
|
||||
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
||||
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
||||
|
||||
- [tika-helm](#tika-helm)
|
||||
- [Requirements](#requirements)
|
||||
- [Installing](#installing)
|
||||
- [Install released version using Helm repository](#install-released-version-using-helm-repository)
|
||||
- [Install development version using master branch](#install-development-version-using-master-branch)
|
||||
- [Custom configuration for tika](#custom-configuration-for-tika)
|
||||
- [Upgrading](#upgrading)
|
||||
- [Configuration](#configuration)
|
||||
- [Deprecated](#deprecated)
|
||||
- [Contributing](#contributing)
|
||||
- [More Information](#more-information)
|
||||
- [Authors](#authors)
|
||||
- [License](#license)
|
||||
|
||||
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
||||
<!-- Use this to update TOC: -->
|
||||
<!-- docker run --rm -it -v $(pwd):/usr/src jorgeandrada/doctoc --github -->
|
||||
|
||||
## Requirements
|
||||
|
||||
* Kubernetes >= 1.14
|
||||
* [Helm][] >= v3.4.2
|
||||
|
||||
## Installing
|
||||
|
||||
### Install released version using Helm repository
|
||||
|
||||
**N.B.** You may or may not need/wish to install the chart into a specific **namespace**,
|
||||
in which case you may need to augment the commands below.
|
||||
|
||||
* Add the Tika Helm charts repo:
|
||||
`helm repo add tika https://apache.jfrog.io/artifactory/tika`
|
||||
|
||||
* Install it:
|
||||
- with Helm 3: `helm install tika tika/tika --set image.tag=${release.version} -n tika-test`, you will see something like
|
||||
```
|
||||
helm install tika tika/tika --set image.tag=latest-full -n tika-test
|
||||
|
||||
...
|
||||
NAME: tika
|
||||
LAST DEPLOYED: Mon Jan 24 13:38:01 2022
|
||||
NAMESPACE: tika-test
|
||||
STATUS: deployed
|
||||
REVISION: 1
|
||||
NOTES:
|
||||
1. Get the application URL by running these commands:
|
||||
export POD_NAME=$(kubectl get pods --namespace tika-test -l "app.kubernetes.io/name=tika,app.kubernetes.io/instance=tika" -o jsonpath="{.items[0].metadata.name}")
|
||||
export CONTAINER_PORT=$(kubectl get pod --namespace tika-test $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}")
|
||||
echo "Visit http://127.0.0.1:9998 to use your application"
|
||||
kubectl --namespace tika-test port-forward $POD_NAME 9998:$CONTAINER_PORT
|
||||
```
|
||||
You may notice that the _kubectl port forwarding_ experiences a _timeout issue_ which ultimately kills the app. In this case you can run port formarding in a loop
|
||||
```
|
||||
while true; do kubectl --namespace tika-test port-forward $POD_NAME 9998:$CONTAINER_PORT ; done
|
||||
```
|
||||
... this should keep `kubectl` reconnecting on connection lost.
|
||||
|
||||
### Install development version using master branch
|
||||
|
||||
* Clone the git repo: `git clone git@github.com:apache/tika-helm.git`
|
||||
|
||||
* Install it:
|
||||
- with Helm 3: `helm install tika . --set image.tag=latest-full`
|
||||
|
||||
### Custom configuration for tika
|
||||
|
||||
To use custom [configuration]( https://tika.apache.org/2.9.1/configuring.html) values for apache tika, use the `tikaConfig` key in the `values.yaml`.
|
||||
Example:
|
||||
```
|
||||
tikaConfig: |
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<properties>
|
||||
<parsers>
|
||||
<!-- Default Parser for most things, except for 2 mime types -->
|
||||
<parser class="org.apache.tika.parser.DefaultParser">
|
||||
<mime-exclude>image/jpeg</mime-exclude>
|
||||
<mime-exclude>application/pdf</mime-exclude>
|
||||
</parser>
|
||||
</parsers>
|
||||
</properties>
|
||||
```
|
||||
## Upgrading
|
||||
|
||||
Please check `artifacthub.io/changes` in `Chart.yaml` before upgrading.
|
||||
|
||||
## Configuration
|
||||
|
||||
| Parameter | Description | Default |
|
||||
| --------- | ----------- | ------- |
|
||||
| `...` | ... | ... |
|
||||
|
||||
## Testing
|
||||
|
||||
```
|
||||
helm plugin install https://github.com/helm-unittest/helm-unittest.git
|
||||
helm unittest .
|
||||
```
|
||||
|
||||
See [helm-unittest][] for canonical documentation.
|
||||
|
||||
## Contributing
|
||||
|
||||
Please check [CONTRIBUTING][] before any contribution or for any questions
|
||||
about our development and testing process.
|
||||
|
||||
## More Information
|
||||
|
||||
For more infomation on Apache Tika Server, go to the [Apache Tika Server documentation][].
|
||||
|
||||
For more information on Apache Tika, go to the official [Apache Tika][] project website.
|
||||
|
||||
For more information on the Apache Software Foundation, go to the [Apache Software Foundation][] website.
|
||||
|
||||
## Authors
|
||||
|
||||
Apache Tika Dev Team (dev@tika.apache.org)
|
||||
|
||||
# License
|
||||
The code is licensed permissively under the [Apache License v2.0][].
|
||||
|
||||
[Apache License v2.0]: https://www.apache.org/licenses/LICENSE-2.0.html
|
||||
[Apache Software Foundation]: http://apache.org
|
||||
[Apache Tika]: https://tika.apache.org
|
||||
[Apache Tika Server documentation]: https://cwiki.apache.org/confluence/display/TIKA/TikaServer
|
||||
[BREAKING_CHANGES.md]: https://github.com/apache/tika-helm/blob/master/BREAKING_CHANGES.md
|
||||
[CHANGELOG.md]: https://github.com/apache/tika-helm/blob/master/CHANGELOG.md
|
||||
[CONTRIBUTING]: https://github.com/apache/tika#contributing-via-github
|
||||
[apache/tika]: https://github.com/apache/tika-docker
|
||||
[helm-unittest]: https://github.com/helm-unittest/helm-unittest
|
||||
[Helm chart]: https://helm.sh/docs/topics/charts/
|
||||
[Kubernetes]: https://kubernetes.io/
|
||||
[Tika Docker image]: https://hub.docker.com/r/apache/tika/tags?page=1&ordering=last_updated
|
||||
[helm]: https://helm.sh
|
||||
[latest release]: https://github.com/apache/tika-helm/releases
|
||||
32
open-webui/charts/tika/artifacthub-repo.yml
Normal file
32
open-webui/charts/tika/artifacthub-repo.yml
Normal file
@ -0,0 +1,32 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
# Artifact Hub repository metadata file
|
||||
#
|
||||
# Some settings like the verified publisher flag or the ignored packages won't
|
||||
# be applied until the next time the repository is processed. Please keep in
|
||||
# mind that the repository won't be processed if it has not changed since the
|
||||
# last time it was processed. Depending on the repository kind, this is checked
|
||||
# in a different way. For Helm http based repositories, we consider it has
|
||||
# changed if the `index.yaml` file changes. For git based repositories, it does
|
||||
# when the hash of the last commit in the branch you set up changes. This does
|
||||
# NOT apply to ownership claim operations, which are processed immediately.
|
||||
#
|
||||
repositoryID: 01c1e88b-cba6-4430-9e05-05f02d3f805b
|
||||
owners:
|
||||
- name: Apache Tika Committers
|
||||
email: dev@tika.apache.org
|
||||
22
open-webui/charts/tika/templates/NOTES.txt
Normal file
22
open-webui/charts/tika/templates/NOTES.txt
Normal file
@ -0,0 +1,22 @@
|
||||
1. Get the application URL by running these commands:
|
||||
{{- if .Values.ingress.enabled }}
|
||||
{{- range $host := .Values.ingress.hosts }}
|
||||
{{- range .paths }}
|
||||
http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- else if contains "NodePort" .Values.service.type }}
|
||||
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "tika-helm.fullname" . }})
|
||||
export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
|
||||
echo http://$NODE_IP:$NODE_PORT
|
||||
{{- else if contains "LoadBalancer" .Values.service.type }}
|
||||
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
|
||||
You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "tika-helm.fullname" . }}'
|
||||
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "tika-helm.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}")
|
||||
echo http://$SERVICE_IP:{{ .Values.service.port }}
|
||||
{{- else if contains "ClusterIP" .Values.service.type }}
|
||||
export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "tika-helm.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
|
||||
export CONTAINER_PORT=$(kubectl get pod --namespace {{ .Release.Namespace }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}")
|
||||
echo "Visit http://127.0.0.1:9998 to use your application"
|
||||
kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 9998:$CONTAINER_PORT
|
||||
{{- end }}
|
||||
74
open-webui/charts/tika/templates/_helpers.tpl
Normal file
74
open-webui/charts/tika/templates/_helpers.tpl
Normal file
@ -0,0 +1,74 @@
|
||||
{{/*
|
||||
Allow the release namespace to be overridden for multi-namespace deployments in combined charts
|
||||
*/}}
|
||||
{{- define "tika-helm.namespace" -}}
|
||||
{{- if .Values.namespaceOverride -}}
|
||||
{{- .Values.namespaceOverride -}}
|
||||
{{- else -}}
|
||||
{{- .Release.Namespace -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
|
||||
|
||||
{{/*
|
||||
Expand the name of the chart.
|
||||
*/}}
|
||||
{{- define "tika-helm.name" -}}
|
||||
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
|
||||
{{- end }}
|
||||
|
||||
{{/*
|
||||
Create a default fully qualified app name.
|
||||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
||||
If release name contains chart name it will be used as a full name.
|
||||
*/}}
|
||||
{{- define "tika-helm.fullname" -}}
|
||||
{{- if .Values.fullnameOverride }}
|
||||
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
|
||||
{{- else }}
|
||||
{{- $name := default .Chart.Name .Values.nameOverride }}
|
||||
{{- if contains $name .Release.Name }}
|
||||
{{- .Release.Name | trunc 63 | trimSuffix "-" }}
|
||||
{{- else }}
|
||||
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
||||
{{/*
|
||||
Create chart name and version as used by the chart label.
|
||||
*/}}
|
||||
{{- define "tika-helm.chart" -}}
|
||||
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
|
||||
{{- end }}
|
||||
|
||||
{{/*
|
||||
Common labels
|
||||
*/}}
|
||||
{{- define "tika-helm.labels" -}}
|
||||
helm.sh/chart: {{ include "tika-helm.chart" . }}
|
||||
{{ include "tika-helm.selectorLabels" . }}
|
||||
{{- if .Chart.AppVersion }}
|
||||
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
|
||||
{{- end }}
|
||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||||
{{- end }}
|
||||
|
||||
{{/*
|
||||
Selector labels
|
||||
*/}}
|
||||
{{- define "tika-helm.selectorLabels" -}}
|
||||
app.kubernetes.io/name: {{ include "tika-helm.name" . }}
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
{{- end }}
|
||||
|
||||
{{/*
|
||||
Create the name of the service account to use
|
||||
*/}}
|
||||
{{- define "tika-helm.serviceAccountName" -}}
|
||||
{{- if .Values.serviceAccount.create }}
|
||||
{{- default (include "tika-helm.fullname" .) .Values.serviceAccount.name }}
|
||||
{{- else }}
|
||||
{{- default "default" .Values.serviceAccount.name }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
28
open-webui/charts/tika/templates/configmap.yaml
Normal file
28
open-webui/charts/tika/templates/configmap.yaml
Normal file
@ -0,0 +1,28 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
---
|
||||
{{- if .Values.tikaConfig }}
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: {{ .Chart.Name }}-config
|
||||
namespace: {{ include "tika-helm.namespace" . }}
|
||||
data:
|
||||
tika-config.xml: |-
|
||||
{{ .Values.tikaConfig | indent 4 }}
|
||||
{{- end }}
|
||||
127
open-webui/charts/tika/templates/deployment.yaml
Normal file
127
open-webui/charts/tika/templates/deployment.yaml
Normal file
@ -0,0 +1,127 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: {{ include "tika-helm.fullname" . }}
|
||||
namespace: {{ include "tika-helm.namespace" . }}
|
||||
labels:
|
||||
{{- include "tika-helm.labels" . | nindent 4 }}
|
||||
spec:
|
||||
{{- if not .Values.autoscaling.enabled }}
|
||||
replicas: {{ .Values.replicaCount }}
|
||||
{{- end }}
|
||||
selector:
|
||||
matchLabels:
|
||||
{{- include "tika-helm.selectorLabels" . | nindent 6 }}
|
||||
template:
|
||||
metadata:
|
||||
{{- with .Values.podAnnotations }}
|
||||
annotations:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
labels:
|
||||
{{- include "tika-helm.selectorLabels" . | nindent 8 }}
|
||||
spec:
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
imagePullSecrets:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
serviceAccountName: {{ include "tika-helm.serviceAccountName" . }}
|
||||
securityContext:
|
||||
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
||||
volumes:
|
||||
- name: sec-ctx-vol
|
||||
emptyDir: {}
|
||||
{{- if .Values.tikaConfig }}
|
||||
- name: tika-config
|
||||
configMap:
|
||||
name: {{ .Chart.Name }}-config
|
||||
defaultMode: 0777
|
||||
{{- end }}
|
||||
containers:
|
||||
- name: {{ .Chart.Name }}
|
||||
{{- if .Values.tikaConfig }}
|
||||
args: ["-c" , "/tika-config/tika-config.xml"]
|
||||
{{- end }}
|
||||
{{- with .Values.env }}
|
||||
env:
|
||||
{{- toYaml . | nindent 12 }}
|
||||
{{- end }}
|
||||
securityContext:
|
||||
{{- toYaml .Values.securityContext | nindent 12 }}
|
||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
volumeMounts:
|
||||
- name: sec-ctx-vol
|
||||
mountPath: /tmp
|
||||
{{- if .Values.tikaConfig }}
|
||||
- name: tika-config
|
||||
mountPath: /tika-config
|
||||
{{- end }}
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: {{ .Values.service.port }}
|
||||
protocol: TCP
|
||||
livenessProbe:
|
||||
{{- if eq (lower .Values.livenessProbe.scheme) "tcp" }}
|
||||
tcpSocket:
|
||||
port: {{ .Values.service.port }}
|
||||
{{- else }}
|
||||
httpGet:
|
||||
path: {{if .Values.config.base_url }}{{- with urlParse (tpl .Values.config.base_url .) }}{{ .path }}{{end}}{{else}}/{{end}}
|
||||
port: {{ .Values.service.port }}
|
||||
scheme: {{ .Values.livenessProbe.scheme | default "http" }}
|
||||
{{- end }}
|
||||
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds | default 15 }}
|
||||
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds | default 30 }}
|
||||
failureThreshold: {{ .Values.livenessProbe.failureThreshold | default 20 }}
|
||||
periodSeconds: {{ .Values.livenessProbe.periodSeconds | default 5 }}
|
||||
readinessProbe:
|
||||
{{- if eq (lower .Values.readinessProbe.scheme) "tcp" }}
|
||||
tcpSocket:
|
||||
port: {{ .Values.service.port }}
|
||||
{{- else }}
|
||||
httpGet:
|
||||
path: {{if .Values.config.base_url }}{{- with urlParse (tpl .Values.config.base_url .) }}{{ .path }}{{end}}{{else}}/{{end}}
|
||||
port: {{ .Values.service.port }}
|
||||
scheme: {{ .Values.readinessProbe.scheme | default "http" }}
|
||||
{{- end }}
|
||||
initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds | default 15 }}
|
||||
timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds | default 30 }}
|
||||
failureThreshold: {{ .Values.readinessProbe.failureThreshold | default 20 }}
|
||||
periodSeconds: {{ .Values.readinessProbe.periodSeconds | default 5 }}
|
||||
resources:
|
||||
{{- toYaml .Values.resources | nindent 12 }}
|
||||
{{- with .Values.nodeSelector }}
|
||||
nodeSelector:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- with .Values.affinity }}
|
||||
affinity:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- with .Values.tolerations }}
|
||||
tolerations:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- with .Values.topologySpreadConstraints }}
|
||||
topologySpreadConstraints:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
66
open-webui/charts/tika/templates/hpa.yaml
Normal file
66
open-webui/charts/tika/templates/hpa.yaml
Normal file
@ -0,0 +1,66 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
---
|
||||
{{- if .Values.autoscaling.enabled }}
|
||||
apiVersion: {{ .Values.autoscaling.apiVersion }}
|
||||
kind: HorizontalPodAutoscaler
|
||||
metadata:
|
||||
name: {{ include "tika-helm.fullname" . }}
|
||||
namespace: {{ include "tika-helm.namespace" . }}
|
||||
labels:
|
||||
{{- include "tika-helm.labels" . | nindent 4 }}
|
||||
spec:
|
||||
scaleTargetRef:
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
name: {{ include "tika-helm.fullname" . }}
|
||||
minReplicas: {{ .Values.autoscaling.minReplicas }}
|
||||
maxReplicas: {{ .Values.autoscaling.maxReplicas }}
|
||||
metrics:
|
||||
{{- if eq .Values.autoscaling.apiVersion "autoscaling/v2" }}
|
||||
{{- if .Values.autoscaling.targetMemoryUtilizationPercentage }}
|
||||
- type: Resource
|
||||
resource:
|
||||
name: memory
|
||||
target:
|
||||
type: Utilization
|
||||
averageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
|
||||
{{- end }}
|
||||
{{- if .Values.autoscaling.targetCPUUtilizationPercentage }}
|
||||
- type: Resource
|
||||
resource:
|
||||
name: cpu
|
||||
target:
|
||||
type: Utilization
|
||||
averageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
|
||||
{{- end }}
|
||||
{{- else }}
|
||||
{{- if .Values.autoscaling.targetMemoryUtilizationPercentage }}
|
||||
- type: Resource
|
||||
resource:
|
||||
name: memory
|
||||
targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
|
||||
{{- end }}
|
||||
{{- if .Values.autoscaling.targetCPUUtilizationPercentage }}
|
||||
- type: Resource
|
||||
resource:
|
||||
name: cpu
|
||||
targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
80
open-webui/charts/tika/templates/ingress.yaml
Normal file
80
open-webui/charts/tika/templates/ingress.yaml
Normal file
@ -0,0 +1,80 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
---
|
||||
{{- if .Values.ingress.enabled -}}
|
||||
{{- $fullName := include "tika-helm.fullname" . -}}
|
||||
{{- $svcPort := .Values.service.port -}}
|
||||
{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
|
||||
{{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }}
|
||||
{{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if semverCompare ">=1.19-0" .Capabilities.KubeVersion.GitVersion -}}
|
||||
apiVersion: networking.k8s.io/v1
|
||||
{{- else if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}}
|
||||
apiVersion: networking.k8s.io/v1beta1
|
||||
{{- else -}}
|
||||
apiVersion: extensions/v1beta1
|
||||
{{- end }}
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: {{ $fullName }}
|
||||
namespace: {{ include "tika-helm.namespace" . }}
|
||||
labels:
|
||||
{{- include "tika-helm.labels" . | nindent 4 }}
|
||||
{{- with .Values.ingress.annotations }}
|
||||
annotations:
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- if and .Values.ingress.className (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion) }}
|
||||
ingressClassName: {{ .Values.ingress.className }}
|
||||
{{- end }}
|
||||
{{- if .Values.ingress.tls }}
|
||||
tls:
|
||||
{{- range .Values.ingress.tls }}
|
||||
- hosts:
|
||||
{{- range .hosts }}
|
||||
- {{ . | quote }}
|
||||
{{- end }}
|
||||
secretName: {{ .secretName }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
rules:
|
||||
{{- range .Values.ingress.hosts }}
|
||||
- host: {{ .host | quote }}
|
||||
http:
|
||||
paths:
|
||||
{{- range .paths }}
|
||||
- path: {{ .path }}
|
||||
{{- if and .pathType (semverCompare ">=1.18-0" $.Capabilities.KubeVersion.GitVersion) }}
|
||||
pathType: {{ .pathType }}
|
||||
{{- end }}
|
||||
backend:
|
||||
{{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }}
|
||||
service:
|
||||
name: {{ $fullName }}
|
||||
port:
|
||||
number: {{ $svcPort }}
|
||||
{{- else }}
|
||||
serviceName: {{ $fullName }}
|
||||
servicePort: {{ $svcPort }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
42
open-webui/charts/tika/templates/networkpolicy.yaml
Normal file
42
open-webui/charts/tika/templates/networkpolicy.yaml
Normal file
@ -0,0 +1,42 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
---
|
||||
{{- if .Values.networkPolicy.enabled }}
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: NetworkPolicy
|
||||
metadata:
|
||||
name: {{ template "tika-helm.fullname" . }}
|
||||
namespace: {{ include "tika-helm.namespace" . }}
|
||||
labels:
|
||||
{{- include "tika-helm.labels" . | nindent 4 }}
|
||||
spec:
|
||||
podSelector:
|
||||
matchLabels:
|
||||
{{- include "tika-helm.selectorLabels" . | nindent 6 }}
|
||||
egress:
|
||||
- {}
|
||||
ingress:
|
||||
- ports:
|
||||
- port: {{ .Values.service.port }}
|
||||
{{- if not .Values.networkPolicy.allowExternal }}
|
||||
from:
|
||||
- podSelector:
|
||||
matchLabels:
|
||||
{{ template "tika-helm.fullname" . }}-client: "true"
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
38
open-webui/charts/tika/templates/service.yaml
Normal file
38
open-webui/charts/tika/templates/service.yaml
Normal file
@ -0,0 +1,38 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ include "tika-helm.fullname" . }}
|
||||
namespace: {{ include "tika-helm.namespace" . }}
|
||||
labels:
|
||||
{{- include "tika-helm.labels" . | nindent 4 }}
|
||||
annotations:
|
||||
{{- with .Values.service.annotations }}
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
type: {{ .Values.service.type }}
|
||||
ports:
|
||||
- port: {{ .Values.service.port }}
|
||||
targetPort: http
|
||||
protocol: TCP
|
||||
name: http
|
||||
selector:
|
||||
{{- include "tika-helm.selectorLabels" . | nindent 4 }}
|
||||
31
open-webui/charts/tika/templates/serviceaccount.yaml
Normal file
31
open-webui/charts/tika/templates/serviceaccount.yaml
Normal file
@ -0,0 +1,31 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
---
|
||||
{{- if .Values.serviceAccount.create }}
|
||||
apiVersion: v1
|
||||
kind: ServiceAccount
|
||||
metadata:
|
||||
name: {{ include "tika-helm.serviceAccountName" . }}
|
||||
namespace: {{ include "tika-helm.namespace" . }}
|
||||
labels:
|
||||
{{- include "tika-helm.labels" . | nindent 4 }}
|
||||
{{- with .Values.serviceAccount.annotations }}
|
||||
annotations:
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
69
open-webui/charts/tika/values.yaml
Normal file
69
open-webui/charts/tika/values.yaml
Normal file
@ -0,0 +1,69 @@
|
||||
affinity: {}
|
||||
autoscaling:
|
||||
apiVersion: autoscaling/v2
|
||||
enabled: false
|
||||
maxReplicas: 100
|
||||
minReplicas: 1
|
||||
targetCPUUtilizationPercentage: 80
|
||||
targetMemoryUtilizationPercentage: 80
|
||||
config:
|
||||
base_url: http://localhost/
|
||||
fullnameOverride: ""
|
||||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
repository: apache/tika
|
||||
tag: 3.2.2.0-full
|
||||
imagePullSecrets: []
|
||||
ingress:
|
||||
annotations: {}
|
||||
enabled: false
|
||||
hosts:
|
||||
- host: chart-example.local
|
||||
paths: []
|
||||
tls: []
|
||||
livenessProbe:
|
||||
failureThreshold: 20
|
||||
initialDelaySeconds: 15
|
||||
periodSeconds: 5
|
||||
scheme: HTTP
|
||||
timeoutSeconds: 30
|
||||
nameOverride: ""
|
||||
namespaceOverride: ""
|
||||
networkPolicy:
|
||||
allowExternal: false
|
||||
enabled: false
|
||||
nodeSelector: {}
|
||||
podAnnotations: {}
|
||||
podSecurityContext: {}
|
||||
readinessProbe:
|
||||
failureThreshold: 20
|
||||
initialDelaySeconds: 15
|
||||
periodSeconds: 5
|
||||
scheme: HTTP
|
||||
timeoutSeconds: 30
|
||||
replicaCount: 1
|
||||
resources:
|
||||
limits:
|
||||
cpu: "2"
|
||||
memory: 2000Mi
|
||||
requests:
|
||||
cpu: "1"
|
||||
memory: 1500Mi
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: true
|
||||
capabilities:
|
||||
drop:
|
||||
- ALL
|
||||
readOnlyRootFilesystem: true
|
||||
runAsGroup: 35002
|
||||
runAsNonRoot: true
|
||||
runAsUser: 35002
|
||||
service:
|
||||
port: 9998
|
||||
type: ClusterIP
|
||||
serviceAccount:
|
||||
annotations: {}
|
||||
create: true
|
||||
name: ""
|
||||
tolerations: []
|
||||
topologySpreadConstraints: []
|
||||
Reference in New Issue
Block a user