numerous-artist-1705
07/24/2020, 3:26 PMPulumi.FSharp.Kubernetes
on NuGet... but that is mostly to reserve the name as I was getting a bunch of errors when generating. I think @wet-noon-14291 worked a bit on it so he'll probably have it already working.wet-noon-14291
07/24/2020, 4:47 PMnumerous-artist-1705
07/24/2020, 4:52 PMwet-noon-14291
07/24/2020, 5:58 PMlet appDeployCe =
deployment {
name "MyDeploy"
deploymentSpec {
replicas 1
LabelSelectorArgs(
MatchLabels = inputMap ["app", input "nginx" ]
)
podTemplateSpec {
ObjectMetaArgs(Labels = appLabels)
podSpec {
containers [
input
(ContainerArgs(
Name = input "nginx",
Image = input "nginx",
Ports = inputList [
input
(ContainerPortArgs(
ContainerPortValue = input 80
))
])
)
]
}
}
}
}
There are a lot of improvement to be done, but this is a good start.