You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
4. Check the Operator Pod and make sure it is in Running state:
34
34
```sh
@@ -81,11 +81,22 @@ haproxy:
81
81
enabled: true
82
82
```
83
83
#### Configuration
84
-
HAProxy can be configured for cluster and group. By default, ports 8000, 8001, and 8002 are configured to handle HTTP traffic.
85
-
Ports can be configured for additional app servers. For example, to add port 8010 for HTTP load balancing, add this configuration to the marklogicgroup.yaml file:
84
+
HAProxy can be configured for cluster. To setup the access for default App Servers for 8000, 8001 and 8002, uncomment the appServer seciton in marklogicgroup.yaml.
85
+
```
86
+
appServers:
87
+
- name: "app-service"
88
+
port: 8000
89
+
path: "/console"
90
+
- name: "admin"
91
+
port: 8001
92
+
path: "/adminUI"
93
+
- name: "manage"
94
+
port: 8002
95
+
path: "/manage"
96
+
```
97
+
Ports can be configured for additional app servers. For example, to add port 8010 for HTTP load balancing, add this configuration to the marklogicgroup.yaml file appServer section:
86
98
```
87
99
- name: my-app-1
88
-
type: HTTP
89
100
port: 8010
90
101
targetPort: 8010
91
102
```
@@ -101,4 +112,9 @@ haproxy:
101
112
```
102
113
103
114
> [!WARNING]
104
-
> Please note, by setting the haproxy service type to LoadBalancer, the MarkLogic endpoint is exposed to the public internet. Because of this, networkPolicy should be set to limit the sources that can visit MarkLogic.
115
+
> Please note, by setting the haproxy service type to LoadBalancer, the MarkLogic endpoint is exposed to the public internet. Because of this, networkPolicy should be set to limit the sources that can visit MarkLogic.
116
+
117
+
## Known Issues and Limitations
118
+
119
+
1. The latest released version of fluent/fluent-bit:3.1.1 has known high and critical security vulnerabilities. If you decide to enable the log collection feature, choose and deploy the fluent-bit or an alternate image with no vulnerabilities as per your requirements.
120
+
2. Known Issues and Limitations for the MarkLogic Server Docker image can be viewed using the link: https://github.com/marklogic/marklogic-docker?tab=readme-ov-file#Known-Issues-and-Limitations.
0 commit comments