Skip to content

Commit c4a39d3

Browse files
committed
Release branch for tika-helm 2.2.1-full
1 parent ca9d55b commit c4a39d3

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

Chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
---
2020
apiVersion: v2
2121
name: tika
22-
version: "1.26"
22+
version: "2.2.1-full"
2323
#kubeVersion:
2424
description: A Helm chart to deploy Apache Tika on Kubernetes
2525
type: application
@@ -38,15 +38,15 @@ maintainers:
3838
3939
url: https://tika.apache.org
4040
icon: https://tika.apache.org/tika.png
41-
appVersion: "1.26"
41+
appVersion: "2.2.1-full"
4242
deprecated: false
4343
annotations:
4444
# artifacthub.io/changes: |
4545
# -
4646
artifacthub.io/containsSecurityUpdates: "true"
4747
artifacthub.io/images: |
4848
- name: tika
49-
image: apache/tika:1.26
49+
image: apache/tika:2.2.1-full
5050
artifacthub.io/license: Apache-2.0
5151
artifacthub.io/links: |
5252
- name: Apache Tika

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ in which case you may need to augment the commands below.
5757
* Install it:
5858
- with Helm 3: `helm install tika tika/tika --version ${release_version}`, you will see something like
5959
```
60-
% helm install tika tika/tika --version 1.26 -n tika-test
60+
% helm install tika tika/tika --version 2.1.0-full -n tika-test
6161
NAME: tika
6262
LAST DEPLOYED: Wed Apr 21 12:15:50 2021
6363
NAMESPACE: tika-test

templates/deployment.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,18 @@ spec:
4545
serviceAccountName: {{ include "tika-helm.serviceAccountName" . }}
4646
securityContext:
4747
{{- toYaml .Values.podSecurityContext | nindent 8 }}
48+
volumes:
49+
- name: sec-ctx-vol
50+
emptyDir: {}
4851
containers:
4952
- name: {{ .Chart.Name }}
5053
securityContext:
5154
{{- toYaml .Values.securityContext | nindent 12 }}
5255
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
5356
imagePullPolicy: {{ .Values.image.pullPolicy }}
57+
volumeMounts:
58+
- name: sec-ctx-vol
59+
mountPath: /tmp
5460
ports:
5561
- name: http
5662
containerPort: 9998

values.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ image:
2323
repository: apache/tika
2424
pullPolicy: IfNotPresent
2525
# Overrides the image tag whose default is the chart appVersion.
26-
tag: "1.26"
26+
tag: "2.2.1-full"
2727

2828
imagePullSecrets: []
2929
nameOverride: ""
@@ -44,10 +44,11 @@ podSecurityContext: {}
4444
# fsGroup: 2000
4545

4646
securityContext:
47+
allowPrivilegeEscalation: false
4748
capabilities:
4849
drop:
4950
- ALL
50-
readOnlyRootFilesystem: true
51+
readOnlyRootFilesystem: false
5152
runAsNonRoot: true
5253
runAsUser: 35002
5354
runAsGroup: 35002

0 commit comments

Comments
 (0)