You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creation of resources like ConfigMap, Secret fails when a kubernetes resource type template is used. This is happening because there is a check for empty resourceGroup. But resourceGroup will be empty for certain resources like ConfigMap, Secrets, Pods etc.
return"", "", "", errors.New(errors.CodeBadRequest, "Group, kind, and name are all required but at least one of them is missing from the manifest")
}
The resource is created but because of the above check, the workflow fails with error Group, kind, and name are all required but at least one of them is missing from the manifest
How can argo workflows be used to create ConfigMaps and Secrets in one of the steps?
@alexec From the commit 2651bd6, I don't see it being ported to any of the releases yet. It's not check-marked in #5715 either so we should be fine as is.
Creation of resources like ConfigMap, Secret fails when a kubernetes resource type template is used. This is happening because there is a check for empty resourceGroup. But resourceGroup will be empty for certain resources like ConfigMap, Secrets, Pods etc.
argo-workflows/workflow/executor/resource.go
Lines 59 to 61 in dba2c04
The resource is created but because of the above check, the workflow fails with error
Group, kind, and name are all required but at least one of them is missing from the manifest
How can argo workflows be used to create ConfigMaps and Secrets in one of the steps?
The workflow that gave this error is
The text was updated successfully, but these errors were encountered: