We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First of all thanks for such awesome tool!
I'm trying to convert https://github.com/kubernetes/ingress-nginx/blob/master/deploy/cloud-generic/deployment.yaml
with following output:
❯ k2tf -f deployment.yaml -o deployment.tf 9:55PM Warn | excluding attribute [kubernetes_deployment.spec.template.spec.container.security_context.capability] not found in Terraform schema field=Deployment.Spec.Template.Spec.Containers.SecurityContext.Capabilities name=nginx_ingress_controller type=kubernetes_deployment
SecurityContext.Capabilities seems to be supported by terraform hashicorp/terraform-provider-kubernetes#247
modifying output file manually seems to cause no problems while planning:
+ security_context { + allow_privilege_escalation = true + privileged = false + read_only_root_filesystem = false + run_as_user = 33 + capabilities { + add = [ + "NET_BIND_SERVICE", ] + drop = [ + "ALL", ] } }
I'm using k2tf_0.2.8_Darwin_x86_64.tar.gz
The text was updated successfully, but these errors were encountered:
Fix for issue sl1pm4t#52 and potentially sl1pm4t#62 - skip renaming c…
2e5c589
…apabilities -> capability
Merge pull request #65 from tomaspinho/master
e8c0fd7
Fix for issue #52 and potentially #62
This should be fixed now by #65.
Sorry, something went wrong.
No branches or pull requests
First of all thanks for such awesome tool!
I'm trying to convert https://github.com/kubernetes/ingress-nginx/blob/master/deploy/cloud-generic/deployment.yaml
with following output:
SecurityContext.Capabilities seems to be supported by terraform
hashicorp/terraform-provider-kubernetes#247
modifying output file manually seems to cause no problems while planning:
I'm using k2tf_0.2.8_Darwin_x86_64.tar.gz
The text was updated successfully, but these errors were encountered: