File tree 4 files changed +13
-6
lines changed
4 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 19
19
---
20
20
apiVersion : v2
21
21
name : tika
22
- version : " 1.26 "
22
+ version : " 2.2.1-full "
23
23
# kubeVersion:
24
24
description : A Helm chart to deploy Apache Tika on Kubernetes
25
25
type : application
@@ -38,15 +38,15 @@ maintainers:
38
38
39
39
url : https://tika.apache.org
40
40
icon : https://tika.apache.org/tika.png
41
- appVersion : " 1.26 "
41
+ appVersion : " 2.2.1-full "
42
42
deprecated : false
43
43
annotations :
44
44
# artifacthub.io/changes: |
45
45
# -
46
46
artifacthub.io/containsSecurityUpdates : " true"
47
47
artifacthub.io/images : |
48
48
- name: tika
49
- image: apache/tika:1.26
49
+ image: apache/tika:2.2.1-full
50
50
artifacthub.io/license : Apache-2.0
51
51
artifacthub.io/links : |
52
52
- name: Apache Tika
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ in which case you may need to augment the commands below.
57
57
* Install it:
58
58
- with Helm 3: ` helm install tika tika/tika --version ${release_version} ` , you will see something like
59
59
```
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
61
61
NAME: tika
62
62
LAST DEPLOYED: Wed Apr 21 12:15:50 2021
63
63
NAMESPACE: tika-test
Original file line number Diff line number Diff line change @@ -45,12 +45,18 @@ spec:
45
45
serviceAccountName : {{ include "tika-helm.serviceAccountName" . }}
46
46
securityContext :
47
47
{{- toYaml .Values.podSecurityContext | nindent 8 }}
48
+ volumes :
49
+ - name : sec-ctx-vol
50
+ emptyDir : {}
48
51
containers :
49
52
- name : {{ .Chart.Name }}
50
53
securityContext :
51
54
{{- toYaml .Values.securityContext | nindent 12 }}
52
55
image : " {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
53
56
imagePullPolicy : {{ .Values.image.pullPolicy }}
57
+ volumeMounts :
58
+ - name : sec-ctx-vol
59
+ mountPath : /tmp
54
60
ports :
55
61
- name : http
56
62
containerPort : 9998
Original file line number Diff line number Diff line change 23
23
repository : apache/tika
24
24
pullPolicy : IfNotPresent
25
25
# Overrides the image tag whose default is the chart appVersion.
26
- tag : " 1.26 "
26
+ tag : " 2.2.1-full "
27
27
28
28
imagePullSecrets : []
29
29
nameOverride : " "
@@ -44,10 +44,11 @@ podSecurityContext: {}
44
44
# fsGroup: 2000
45
45
46
46
securityContext :
47
+ allowPrivilegeEscalation : false
47
48
capabilities :
48
49
drop :
49
50
- ALL
50
- readOnlyRootFilesystem : true
51
+ readOnlyRootFilesystem : false
51
52
runAsNonRoot : true
52
53
runAsUser : 35002
53
54
runAsGroup : 35002
You can’t perform that action at this time.
0 commit comments