-
Notifications
You must be signed in to change notification settings - Fork 4
/
jkube-tomcat.yaml
45 lines (38 loc) · 990 Bytes
/
jkube-tomcat.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
schema_version: 1
name: "quay.io/jkube/jkube-tomcat"
description: "Base image for Apache Tomcat webapp deployments"
version: "latest"
from: "tomcat:10.1.24-jdk21-temurin"
labels:
- name: "io.k8s.display-name"
value: "Eclipse JKube - Tomcat"
- name: "io.k8s.description"
value: "Base image for Apache Tomcat webapp deployments"
- name: "io.openshift.tags"
value: "builder,jkube,tomcat"
- name: "io.openshift.s2i.scripts-url"
value: "image:///usr/local/s2i"
- name: "io.openshift.s2i.destination"
value: "/tmp"
- name: "maintainer"
value: "Eclipse JKube Team <[email protected]>"
envs:
- name: DEPLOYMENTS_DIR
value: "/deployments"
- name: CATALINA_HOME
value: "/usr/local/tomcat"
- name: PATH
value: "$PATH:$CATALINA_HOME/bin:/usr/local/s2i"
packages:
manager: microdnf
modules:
repositories:
- path: modules
install:
- name: s2i-tomcat
ports:
- value: 8080
run:
user: 1000
cmd:
- "/usr/local/s2i/run"