We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d04dcc commit c518948Copy full SHA for c518948
internal/resource/configmap_test.go
@@ -628,6 +628,12 @@ CONSOLE_LOG=new`
628
})
629
630
631
+
632
+ It("should parse multi-line config", func() {
633
+ instance.Spec.Rabbitmq.AdditionalConfig = "multi_line_value = \"\"\"\nfirst_line\nsecond_line\n\"\"\""
634
+ Expect(configMapBuilder.Update(configMap)).To(Succeed())
635
+ Expect(configMap.Data["userDefinedConfiguration.conf"]).To(Equal("multi_line_value = \"\"\"\nfirst_line\nsecond_line\n\"\"\"\n"))
636
+ })
637
638
639
Context("UpdateMayRequireStsRecreate", func() {
0 commit comments