Skip to content

Commit

Permalink
Release branch for tika-helm 2.2.1-full
Browse files Browse the repository at this point in the history
  • Loading branch information
lewismc committed Jan 23, 2022
1 parent ca9d55b commit c4a39d3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
---
apiVersion: v2
name: tika
version: "1.26"
version: "2.2.1-full"
#kubeVersion:
description: A Helm chart to deploy Apache Tika on Kubernetes
type: application
Expand All @@ -38,15 +38,15 @@ maintainers:
email: dev@tika.apache.org
url: https://tika.apache.org
icon: https://tika.apache.org/tika.png
appVersion: "1.26"
appVersion: "2.2.1-full"
deprecated: false
annotations:
# artifacthub.io/changes: |
# -
artifacthub.io/containsSecurityUpdates: "true"
artifacthub.io/images: |
- name: tika
image: apache/tika:1.26
image: apache/tika:2.2.1-full
artifacthub.io/license: Apache-2.0
artifacthub.io/links: |
- name: Apache Tika
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ in which case you may need to augment the commands below.
* Install it:
- with Helm 3: `helm install tika tika/tika --version ${release_version}`, you will see something like
```
% helm install tika tika/tika --version 1.26 -n tika-test
% helm install tika tika/tika --version 2.1.0-full -n tika-test
NAME: tika
LAST DEPLOYED: Wed Apr 21 12:15:50 2021
NAMESPACE: tika-test
Expand Down
6 changes: 6 additions & 0 deletions templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,18 @@ spec:
serviceAccountName: {{ include "tika-helm.serviceAccountName" . }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
volumes:
- name: sec-ctx-vol
emptyDir: {}
containers:
- name: {{ .Chart.Name }}
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
ports:
- name: http
containerPort: 9998
Expand Down
5 changes: 3 additions & 2 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ image:
repository: apache/tika
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "1.26"
tag: "2.2.1-full"

imagePullSecrets: []
nameOverride: ""
Expand All @@ -44,10 +44,11 @@ podSecurityContext: {}
# fsGroup: 2000

securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
readOnlyRootFilesystem: false
runAsNonRoot: true
runAsUser: 35002
runAsGroup: 35002
Expand Down

0 comments on commit c4a39d3

Please # to comment.