-
Notifications
You must be signed in to change notification settings - Fork 0
/
00-liferay-configs.yaml
54 lines (50 loc) · 1.15 KB
/
00-liferay-configs.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
apiVersion: v1
kind: Namespace
metadata:
name: liferay
---
# Secret to store Liferay MySQL DB credentials
apiVersion: v1
kind: Secret
metadata:
name: liferay-db-creds
namespace: liferay
labels:
app: liferay
tier: mysql
type: Opaque
data:
dbname: bGlmZXJheQ==
username: bGlmZXJheQ==
password: bGlmZXJheS5wdy4xMjM0NTY3ODkw
# $ echo -n 'liferay' | base64
# bGlmZXJheQ==
# $ echo -n 'liferay.pw.1234567890' | base64
# bGlmZXJheS5wdy4xMjM0NTY3ODkw
---
# Secret to store MySQL DB root credentials
apiVersion: v1
kind: Secret
metadata:
name: liferay-db-root
namespace: liferay
labels:
app: liferay
tier: mysql
type: Opaque
data:
password: bGlmZXJheS5yb290LjEyMzQ1Njc4OTA=
# $ echo -n 'liferay.root.1234567890' | base64
# bGlmZXJheS5yb290LjEyMzQ1Njc4OTA=
# The below config files can be stored as configMaps with kubectl,
# using the `create-configmaps.sh` script in the project root.
#
# Liferay Portal configuration file:
# portal-ext.properties
#
# Elasticsearch Connector OSGi configuration file:
# com.liferay.portal.search.elasticsearch7.configuration.ElasticsearchConfiguration.config
#
# Nginx config file:
# nginx.conf
#