Skip to content

Commit 70f5275

Browse files
authored
Oracle SOA Suite release 24.3.2 documentation (#217)
1 parent abc4409 commit 70f5275

File tree

432 files changed

+109186
-2290
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

432 files changed

+109186
-2290
lines changed

OracleSOASuite/kubernetes/charts/ingress-per-domain/templates/nginx-ingress-e2essl.yaml

Lines changed: 57 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020, 2023, Oracle and/or its affiliates.
1+
# Copyright (c) 2020, 2024, Oracle and/or its affiliates.
22
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33
#
44
{{- if eq .Values.type "NGINX" }}
@@ -7,8 +7,13 @@
77
apiVersion: v1
88
kind: Service
99
metadata:
10-
name: {{ .Values.wlsDomain.domainUID }}-{{ .Values.wlsDomain.adminServerName | lower }}-nginx-ssl
10+
name: {{ .Values.wlsDomain.domainUID }}-{{ .Values.wlsDomain.adminServerName | lower | replace "_" "-" }}-nginx-e2essl
1111
namespace: {{ .Release.Namespace }}
12+
labels:
13+
serviceType: SERVER
14+
weblogic.domainName: {{ .Values.wlsDomain.domainUID }}
15+
weblogic.domainUID: {{ .Values.wlsDomain.domainUID }}
16+
weblogic.serverName: {{ .Values.wlsDomain.adminServerName }}
1217
spec:
1318
ports:
1419
{{- if eq .Values.wlsDomain.secureEnabled true }}
@@ -49,14 +54,36 @@ spec:
4954
pathType: ImplementationSpecific
5055
backend:
5156
service:
52-
name: '{{ .Values.wlsDomain.domainUID }}-{{ .Values.wlsDomain.adminServerName | lower | replace "_" "-" }}-nginx-ssl'
57+
name: '{{ .Values.wlsDomain.domainUID }}-{{ .Values.wlsDomain.adminServerName | lower | replace "_" "-" }}-nginx-e2essl'
5358
port:
5459
{{- if eq .Values.wlsDomain.secureEnabled true }}
5560
number: {{ .Values.wlsDomain.adminSecurePort }}
5661
{{- else }}
57-
number: {{ .Values.wlsDomain.adminServerSSLPort }}
62+
number: {{ .Values.wlsDomain.adminServerSSLPort }}
5863
{{- end }}
5964
{{- if or (eq .Values.domainType "soa") (eq .Values.domainType "soaosb") }}
65+
66+
---
67+
apiVersion: v1
68+
kind: Service
69+
metadata:
70+
name: '{{ .Values.wlsDomain.domainUID }}-cluster-{{ .Values.wlsDomain.soaClusterName | lower | replace "_" "-" }}-nginx-e2essl'
71+
namespace: {{ .Release.Namespace }}
72+
labels:
73+
serviceType: CLUSTER
74+
weblogic.clusterName: {{ .Values.wlsDomain.soaClusterName }}
75+
weblogic.domainName: {{ .Values.wlsDomain.domainUID }}
76+
weblogic.domainUID: {{ .Values.wlsDomain.domainUID }}
77+
spec:
78+
ports:
79+
- port: {{ .Values.wlsDomain.soaManagedServerSSLPort }}
80+
protocol: TCP
81+
targetPort: {{ .Values.wlsDomain.soaManagedServerSSLPort }}
82+
selector:
83+
weblogic.domainUID: {{ .Values.wlsDomain.domainUID }}
84+
weblogic.clusterName: {{ .Values.wlsDomain.soaClusterName }}
85+
type: ClusterIP
86+
6087
---
6188
apiVersion: networking.k8s.io/v1
6289
kind: Ingress
@@ -81,11 +108,33 @@ spec:
81108
pathType: ImplementationSpecific
82109
backend:
83110
service:
84-
name: '{{ .Values.wlsDomain.domainUID }}-cluster-{{ .Values.wlsDomain.soaClusterName | lower | replace "_" "-" }}'
111+
name: '{{ .Values.wlsDomain.domainUID }}-cluster-{{ .Values.wlsDomain.soaClusterName | lower | replace "_" "-" }}-nginx-e2essl'
85112
port:
86-
number: {{ .Values.wlsDomain.soaManagedServerSSLPort }}
113+
number: {{ .Values.wlsDomain.soaManagedServerSSLPort }}
87114
{{- end }}
88115
{{- if or (eq .Values.domainType "osb") (eq .Values.domainType "soaosb") }}
116+
117+
---
118+
apiVersion: v1
119+
kind: Service
120+
metadata:
121+
name: '{{ .Values.wlsDomain.domainUID }}-cluster-{{ .Values.wlsDomain.osbClusterName | lower | replace "_" "-" }}-nginx-e2essl'
122+
namespace: {{ .Release.Namespace }}
123+
labels:
124+
serviceType: CLUSTER
125+
weblogic.clusterName: {{ .Values.wlsDomain.osbClusterName }}
126+
weblogic.domainName: {{ .Values.wlsDomain.domainUID }}
127+
weblogic.domainUID: {{ .Values.wlsDomain.domainUID }}
128+
spec:
129+
ports:
130+
- port: {{ .Values.wlsDomain.osbManagedServerSSLPort }}
131+
protocol: TCP
132+
targetPort: {{ .Values.wlsDomain.osbManagedServerSSLPort }}
133+
selector:
134+
weblogic.domainUID: {{ .Values.wlsDomain.domainUID }}
135+
weblogic.clusterName: {{ .Values.wlsDomain.osbClusterName }}
136+
type: ClusterIP
137+
89138
---
90139
apiVersion: networking.k8s.io/v1
91140
kind: Ingress
@@ -110,9 +159,9 @@ spec:
110159
pathType: ImplementationSpecific
111160
backend:
112161
service:
113-
name: '{{ .Values.wlsDomain.domainUID }}-cluster-{{ .Values.wlsDomain.osbClusterName | lower | replace "_" "-" }}'
162+
name: '{{ .Values.wlsDomain.domainUID }}-cluster-{{ .Values.wlsDomain.osbClusterName | lower | replace "_" "-" }}-nginx-e2essl'
114163
port:
115-
number: {{ .Values.wlsDomain.osbManagedServerSSLPort }}
164+
number: {{ .Values.wlsDomain.osbManagedServerSSLPort }}
116165
{{- end }}
117166

118167
{{- end }}

OracleSOASuite/kubernetes/charts/ingress-per-domain/templates/nginx-ingress-ssl.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ spec:
107107
number: {{ .Values.wlsDomain.adminServerPort }}
108108
{{- end }}
109109
{{- if or (eq .Values.domainType "osb") (eq .Values.domainType "soaosb") }}
110-
- path: /lwpfconsole
110+
- path: /testconsole
111111
pathType: ImplementationSpecific
112112
backend:
113113
service:
@@ -116,7 +116,7 @@ spec:
116116
number: {{ .Values.wlsDomain.adminServerPort }}
117117
{{- end }}
118118
{{- if or (eq .Values.domainType "osb") (eq .Values.domainType "soaosb") }}
119-
- path: /testconsole
119+
- path: /lwpfconsole
120120
pathType: ImplementationSpecific
121121
backend:
122122
service:

OracleSOASuite/kubernetes/charts/ingress-per-domain/templates/traefik-ingress-e2essl.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Copyright (c) 2020, 2023, Oracle and/or its affiliates.
1+
# Copyright (c) 2020, 2024, Oracle and/or its affiliates.
22
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33
#
44
{{- if eq .Values.type "TRAEFIK" }}
55
{{- if (eq .Values.sslType "E2ESSL") }}
66
---
7-
apiVersion: traefik.containo.us/v1alpha1
7+
apiVersion: traefik.io/v1alpha1
88
kind: IngressRouteTCP
99
metadata:
1010
name: {{ .Values.wlsDomain.domainUID }}-traefik

OracleSOASuite/kubernetes/charts/ingress-per-domain/templates/traefik-ingress-nonssl.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ spec:
101101
number: {{ .Values.wlsDomain.adminServerPort }}
102102
{{- end }}
103103
{{- if or (eq .Values.domainType "osb") (eq .Values.domainType "soaosb") }}
104-
- path: /lwpfconsole
104+
- path: /testconsole
105105
pathType: ImplementationSpecific
106106
backend:
107107
service:
@@ -110,7 +110,7 @@ spec:
110110
number: {{ .Values.wlsDomain.adminServerPort }}
111111
{{- end }}
112112
{{- if or (eq .Values.domainType "osb") (eq .Values.domainType "soaosb") }}
113-
- path: /testconsole
113+
- path: /lwpfconsole
114114
pathType: ImplementationSpecific
115115
backend:
116116
service:

OracleSOASuite/kubernetes/charts/ingress-per-domain/templates/traefik-ingress-ssl.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,16 +104,16 @@ spec:
104104
number: {{ .Values.wlsDomain.adminServerPort }}
105105
{{- end }}
106106
{{- if or (eq .Values.domainType "osb") (eq .Values.domainType "soaosb") }}
107-
- path: /lwpfconsole
107+
- path: /testconsole
108108
pathType: ImplementationSpecific
109109
backend:
110110
service:
111111
name: '{{ .Values.wlsDomain.domainUID }}-{{ .Values.wlsDomain.adminServerName | lower | replace "_" "-" }}'
112112
port:
113113
number: {{ .Values.wlsDomain.adminServerPort }}
114-
{{- end }}
114+
{{- end }}
115115
{{- if or (eq .Values.domainType "osb") (eq .Values.domainType "soaosb") }}
116-
- path: /testconsole
116+
- path: /lwpfconsole
117117
pathType: ImplementationSpecific
118118
backend:
119119
service:

OracleSOASuite/kubernetes/charts/ingress-per-domain/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ wlsDomain:
3333

3434
# Host specific values
3535
hostName:
36-
admin: admin.org
37-
soa: soa.org
38-
osb: osb.org
36+
admin: admin.domain.org
37+
soa: soa.domain.org
38+
osb: osb.domain.org
3939

4040

4141
# Ngnix specific values

OracleSOASuite/kubernetes/charts/weblogic-operator/.helmignore

Lines changed: 0 additions & 12 deletions
This file was deleted.

OracleSOASuite/kubernetes/charts/weblogic-operator/Chart.yaml

Lines changed: 0 additions & 10 deletions
This file was deleted.

OracleSOASuite/kubernetes/charts/weblogic-operator/logstash.conf

Lines changed: 0 additions & 38 deletions
This file was deleted.

OracleSOASuite/kubernetes/charts/weblogic-operator/logstash.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)