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
Copy file name to clipboardExpand all lines: docs/README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -117,6 +117,18 @@ For the sake of simplicity, we are keeping the convention of the same version fo
117
117
118
118
## Limitations
119
119
120
+
- Operator can only patch environment variable that configured as a key/value pair
121
+
```
122
+
env:
123
+
- name: JAVA_TOOL_OPTIONS
124
+
value: "some initital value"
125
+
```
126
+
if value mapped from the configMap or secret using `valueFrom`, operator will fail to update the deployment with the following error:
127
+
```
128
+
'Deployment.apps "<deployment name>" is invalid: spec.template.spec.containers[0].env[31].valueFrom:
129
+
Invalid value: "": may not be specified when `value` is not empty'
130
+
```
131
+
120
132
- If an application has [JDWR](https://en.wikipedia.org/wiki/Java_Debug_Wire_Protocol) enabled, it will cause a conflict with the Lightrun agent installed by the Lightrun K8s operator.
121
133
- You must install the correct init container for your application’s container platform. For example, _lightruncom/k8s-operator-init-java-agent-`linux`:1.7.0-init.0_.
0 commit comments