fierce-memory-34976
09/21/2020, 11:19 AMapiVersion: <http://cloud.google.com/v1|cloud.google.com/v1>
kind: BackendConfig
metadata:
name: my-backendconfig
spec:
healthCheck:
checkIntervalSec: interval
timeoutSec: timeout
healthyThreshold: health-threshold
unhealthyThreshold: unhealthy-threshold
type: protocol
requestPath: path
port: port
Is it possible to create such resource with pulumi C# and if yes, what's it's name and how do i tell the ingress resource to use this config? i need this to customize the health check endpoint for my ingress configurationReadinessProbe = new ProbeArgs
{
HttpGet = new HTTPGetActionArgs
{
Path = "/healthz",
Port = 80
}
}