-
Notifications
You must be signed in to change notification settings - Fork 0
/
openshift-template.yaml
169 lines (160 loc) · 4.49 KB
/
openshift-template.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
apiVersion: v1
kind: Template
labels:
template: jboss-amq-app-demo
metadata:
annotations:
openshift.io/display-name: Openshift Jboss A-MQ application demo
description: >-
A sample application that shows the workflow of Jboss A-MQ
tags: 'jboss-amq-app-demo'
name: jboss-amq-app-demo
parameters:
- name: NAME
description: The name of the application
displayName: Name
required: true
value: eap-app
- name: SOURCE_REPOSITORY_URL
description: The URL of the repository with your application source code.
displayName: Git Repository URL
required: true
value: 'https://github.com/jboss-developer/jboss-eap-quickstarts.git'
- name: SOURCE_REPOSITORY_REF
description: Set the branch name if you are not using master branch
displayName: Git Reference
value: 6.4.x
required: false
- name: CONTEXT_DIR
description: >-
Set this to the relative path to your project if it is not in the root of
your repository.
displayName: Context Directory
value: helloworld-mdb
objects:
- kind: BuildConfig
apiVersion: v1
metadata:
annotations:
description: Defines how to build the application
name: '${NAME}-build'
spec:
source:
type: Git
git:
ref: '${SOURCE_REPOSITORY_REF}'
uri: '${SOURCE_REPOSITORY_URL}'
contextDir: '${CONTEXT_DIR}'
strategy:
dockerStrategy:
dockerfilePath: Dockerfile.build
output:
to:
kind: ImageStreamTag
name: '${NAME}:latest'
- kind: ImageStream
apiVersion: v1
metadata:
annotations:
description: Keeps track of changes in the application image
name: '${NAME}-build'
- kind: BuildConfig
apiVersion: v1
metadata:
annotations:
description: Defines how to build the application
name: '${NAME}'
spec:
source:
type: Git
git:
ref: '${SOURCE_REPOSITORY_REF}'
uri: '${SOURCE_REPOSITORY_URL}'
contextDir: '${CONTEXT_DIR}'
images:
- from:
kind: ImageStreamTag
name: '${NAME}-build:latest'
paths:
- destinationDir: app
sourcePath: /app/deployments
strategy:
dockerStrategy:
dockerfilePath: Dockerfile
output:
to:
kind: ImageStreamTag
name: '${NAME}:latest'
- kind: ImageStream
apiVersion: v1
metadata:
annotations:
description: Keeps track of changes in the application image
name: '${NAME}'
- kind: DeploymentConfig
apiVersion: v1
metadata:
name: '${NAME}'
spec:
strategy:
type: Rolling
triggers:
- type: ImageChange
imageChangeParams:
automatic: true
containerNames:
- eap-app
from:
kind: ImageStreamTag
name: '${NAME}:latest'
- type: ConfigChange
replicas: 1
selector:
name: '${NAME}'
template:
metadata:
name: '${NAME}'
labels:
name: '${NAME}'
spec:
containers:
- name: eap-app
image: '${NAME}:latest'
env:
- name: KAFKA_SERVICE_NAME
value: '${KAFKA_SERVICE_NAME}'
- name: MQ_SERVICE_PREFIX_MAPPING
value: eap-app-amq=MQ
- name: MQ_JNDI
value: java:/ConnectionFactory
- name: MQ_USERNAME
value: admin
- name: MQ_PASSWORD
value: admin
- name: MQ_PROTOCOL
value: tcp
- name: MQ_QUEUES
value: HELLOWORLDMDBQueue
- name: MQ_TOPICS
value: HELLOWORLDMDBTopic
- kind: Service
apiVersion: v1
metadata:
annotations:
description: Exposing the EAP app
name: '${NAME}'
spec:
ports:
- name: web
port: 8080
targetPort: 8080
selector:
name: '${NAME}'
- kind: Route
apiVersion: v1
metadata:
name: '${NAME}'
spec:
to:
kind: Service
name: '${NAME}'