-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
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
feat: support Docker plugin #35
Conversation
bce6936
to
c4a2ee1
Compare
I have implemented the basic feature. Exampleresource "docker_plugin" "sample-volume-plugin" {
plugin_reference = "docker.io/tiborvass/sample-volume-plugin:latest"
alias = "sample-volume-plugin:latest"
disabled = true
grant_all_permissions = true
disable_when_set = true
force_destroy = true
enable_timeout = 60
force_disable = true
env = [
"DEBUG=1"
]
} Note
For example, resource "docker_plugin" "sample-volume-plugin" {
plugin_reference = "tiborvass/sample-volume-plugin" # must be "docker.io/tiborvass/sample-volume-plugin:latest"
alias = "sample" # must be "sample:latest"
}
Check List
|
c4a2ee1
to
c43ecb5
Compare
e07dacb
to
e892830
Compare
e892830
to
26624c6
Compare
``` website/docs/r/plugin.html.markdown:58 MD040/fenced-code-language Fenced code blocks should have a language specified [Context: "```"] ```
I have created some issues for future work. |
I propose that we will first merge this PR here and then rebase #102 for the TF SDK update on it. We are ready4review right @suzuki-shunsuke ? |
@mavogel Yes. Please review. |
For some reason a critical comment is being hidden by github: #35 (comment) |
58fccc6
to
03b2187
Compare
cb8b75d
to
735df8a
Compare
I'm writing tests of |
Oh, sorry. There is a typo in tests. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See conversations for details. Awesome work till here. Let's get this ready
Updated. Please review. |
``` $ cd docker $ ag -l 'Description:.*\.",' | xargs -n 1 sed -i 's/Description:\(.*\)\.",/Description:\1",/' ```
complement the latest tag.
0950bba
to
b82956b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks, @suzuki-shunsuke and @innovate-invent for the fruitful discussion 🚀
Close #24