Skip to content

Commit bddd8d8

Browse files
authored
Merge pull request #320 from marklogic/MLE-21334/Remove-attributes-from-cookie
MLE-21334/remove Security attribute from cookie
2 parents d8d9664 + 026d155 commit bddd8d8

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

NOTICE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,4 +185,4 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
185185
See the License for the specific language governing permissions and
186186
limitations under the License.
187187

188-
====================
188+
====================

charts/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ keywords:
1717
sources:
1818
- https://github.com/marklogic/marklogic-kubernetes
1919
- https://www.marklogic.com/
20-
version: 2.1.0
20+
version: 2.1.0

charts/templates/configmap-haproxy.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ data:
112112
balance leastconn
113113
option forwardfor
114114
http-request replace-path {{ $appservicespath }}(/)?(.*) /\2
115-
cookie haproxy insert indirect httponly secure nocache maxidle 30m maxlife 4h
115+
cookie haproxy insert indirect httponly nocache maxidle 30m maxlife 4h
116116
stick-table type string len 32 size 10k expire 4h
117117
stick store-response res.cook(HostId)
118118
stick store-response res.cook(SessionId)
@@ -132,7 +132,7 @@ data:
132132
balance leastconn
133133
option forwardfor
134134
http-request replace-path {{ $adminpath }}(/)?(.*) /\2
135-
cookie haproxy insert indirect httponly secure nocache maxidle 30m maxlife 4h
135+
cookie haproxy insert indirect httponly nocache maxidle 30m maxlife 4h
136136
stick-table type string len 32 size 10k expire 4h
137137
stick store-response res.cook(HostId)
138138
stick store-response res.cook(SessionId)
@@ -152,7 +152,7 @@ data:
152152
balance leastconn
153153
option forwardfor
154154
http-request replace-path {{ $managepath }}(/)?(.*) /\2
155-
cookie haproxy insert indirect httponly secure nocache maxidle 30m maxlife 4h
155+
cookie haproxy insert indirect httponly nocache maxidle 30m maxlife 4h
156156
stick-table type string len 32 size 10k expire 4h
157157
stick store-response res.cook(HostId)
158158
stick store-response res.cook(SessionId)
@@ -177,7 +177,7 @@ data:
177177
balance leastconn
178178
option forwardfor
179179
http-request replace-path {{$path}}(/)?(.*) /\2
180-
cookie haproxy insert indirect httponly secure nocache maxidle 30m maxlife 4h
180+
cookie haproxy insert indirect httponly nocache maxidle 30m maxlife 4h
181181
stick-table type string len 32 size 10k expire 4h
182182
stick store-response res.cook(HostId)
183183
stick store-response res.cook(SessionId)
@@ -209,7 +209,7 @@ data:
209209
mode http
210210
balance leastconn
211211
option forwardfor
212-
cookie haproxy insert indirect httponly secure nocache maxidle 30m maxlife 4h
212+
cookie haproxy insert indirect httponly nocache maxidle 30m maxlife 4h
213213
stick-table type string len 32 size 10k expire 4h
214214
stick store-response res.cook(HostId)
215215
stick store-response res.cook(SessionId)
@@ -238,7 +238,7 @@ data:
238238
mode http
239239
balance leastconn
240240
option forwardfor
241-
cookie haproxy insert indirect httponly secure nocache maxidle 30m maxlife 4h
241+
cookie haproxy insert indirect httponly nocache maxidle 30m maxlife 4h
242242
stick-table type string len 32 size 10k expire 4h
243243
stick store-response res.cook(HostId)
244244
stick store-response res.cook(SessionId)
@@ -267,7 +267,7 @@ data:
267267
mode http
268268
balance leastconn
269269
option forwardfor
270-
cookie haproxy insert indirect httponly secure nocache maxidle 30m maxlife 4h
270+
cookie haproxy insert indirect httponly nocache maxidle 30m maxlife 4h
271271
stick-table type string len 32 size 10k expire 4h
272272
stick store-response res.cook(HostId)
273273
stick store-response res.cook(SessionId)
@@ -300,7 +300,7 @@ data:
300300
mode http
301301
balance leastconn
302302
option forwardfor
303-
cookie haproxy insert indirect httponly secure nocache maxidle 30m maxlife 4h
303+
cookie haproxy insert indirect httponly nocache maxidle 30m maxlife 4h
304304
stick-table type string len 32 size 10k expire 4h
305305
stick store-response res.cook(HostId)
306306
stick store-response res.cook(SessionId)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,4 +164,4 @@ require (
164164
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
165165
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
166166
sigs.k8s.io/yaml v1.4.0 // indirect
167-
)
167+
)

go.sum

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,4 +413,4 @@ sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h6
413413
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4=
414414
sigs.k8s.io/structured-merge-diff/v4 v4.4.1/go.mod h1:N8hJocpFajUSSeSJ9bOZ77VzejKZaXsTtZo4/u7Io08=
415415
sigs.k8s.io/yaml v1.4.0 h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E=
416-
sigs.k8s.io/yaml v1.4.0/go.mod h1:Ejl7/uTz7PSA4eKMyQCUTnhZYNmLIl+5c2lQPGR2BPY=
416+
sigs.k8s.io/yaml v1.4.0/go.mod h1:Ejl7/uTz7PSA4eKMyQCUTnhZYNmLIl+5c2lQPGR2BPY=

0 commit comments

Comments
 (0)