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
Describe the bug create_k8s_cluster.yml seems to have an issue. In the set-fact task, we do setup
storage_class: name: <container_name>
First, It seems strange to set container name in the storage-class variable.
In the cluster deployment code :
storage_container: "{{storage_class.name}}"
storage_container: "{{storage_container.name}}"
storage_container
To Reproduce Just try to deploy prod cluster from sample.
Stack trace
Expected behavior I htink it would be great to replace
by
storage_class: name: <storage_class_name> storage_container: name: <storage_container_name>
And update deployment tasks with
storage_class: name:"{{storage_class.name}}" storage_container: "{{storage_container.name}}"
The text was updated successfully, but these errors were encountered:
premkarat
alaa-bish
Gevorg-Khachatryan-97
Successfully merging a pull request may close this issue.
Describe the bug
create_k8s_cluster.yml seems to have an issue.
In the set-fact task, we do setup
First, It seems strange to set container name in the storage-class variable.
In the cluster deployment code :
storage_container: "{{storage_class.name}}"
: it is ok (but not clear/clean)storage_container: "{{storage_container.name}}"
: it fails because of variablestorage_container
is not definedTo Reproduce
Just try to deploy prod cluster from sample.
Stack trace
Expected behavior
I htink it would be great to replace
by
And update deployment tasks with
The text was updated successfully, but these errors were encountered: