Initial SPIRE 1.9.0 support (#262)

This commit is contained in:
kfox1111
2024-02-28 17:54:53 +00:00
committed by GitHub
parent 40d5fefcfe
commit ac83694970
14 changed files with 55 additions and 7 deletions
+13
View File
@@ -144,6 +144,19 @@ spire-agent:
objs, err := ValueStringRender(chart, `
spire-server:
enabled: false
`)
Expect(err).Should(Succeed())
notes := objs["spire/templates/NOTES.txt"]
Expect(notes).Should(ContainSubstring("Installed"))
})
})
Describe("spire-server.credentialComposer.uniqueID", func() {
It("spire server uniqueid credential composer", func() {
objs, err := ValueStringRender(chart, `
spire-server:
credentialComposer:
uniqueID:
enabled: true
`)
Expect(err).Should(Succeed())
notes := objs["spire/templates/NOTES.txt"]