Skip to content
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

add Docker Swarm support #376

Merged
merged 26 commits into from
Feb 17, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
8873aa3
add aio binary
s4ke Feb 7, 2023
325c905
add build tooling
s4ke Feb 7, 2023
2f8408b
change propagated mount path
s4ke Feb 7, 2023
22eef6b
rename docker image for driver
s4ke Feb 7, 2023
619fa5c
change staging/unstaging to noop to make things work on swarm
s4ke Feb 12, 2023
5c291d3
add step by step guide for resizing of volumes
s4ke Feb 12, 2023
2945a65
add step by step guide for resizing of volumes
s4ke Feb 12, 2023
ccf2b7b
add more details to resize steps
s4ke Feb 13, 2023
21bf9ed
add documentation on usage of docker plugin
s4ke Feb 13, 2023
b90ab4d
format config.json
s4ke Feb 13, 2023
4b817e4
clarify README.md for swarm, add step for creating read+write token
s4ke Feb 13, 2023
9e180be
add reference to ticket tracking volume resizing support in Docker Swarm
s4ke Feb 13, 2023
5604add
remove unnecessary call to hcloud api
s4ke Feb 13, 2023
0a9190f
add build step for docker plugin
s4ke Feb 13, 2023
5f8fa5c
change PLUGIN_NAME to hetznercloud/csi-driver
s4ke Feb 13, 2023
5883070
fix github flows as per review, change docker plugin image name
s4ke Feb 13, 2023
ea9686a
fix github flows as per review, change docker plugin image name
s4ke Feb 13, 2023
71a5b2b
fix image name for swarm in README.md
s4ke Feb 13, 2023
a5e7725
Update deploy/docker-swarm/pkg/Dockerfile
s4ke Feb 13, 2023
9f11113
add feature flag to force volume staging
s4ke Feb 13, 2023
73697b2
Merge branch 'main' of github.com:s4ke/csi-driver
s4ke Feb 13, 2023
3f3a03a
fix default plugin name in makefile
s4ke Feb 13, 2023
5075bcb
fix boolean logic for feature flag
s4ke Feb 13, 2023
a2263bf
Update deploy/docker-swarm/pkg/Makefile
s4ke Feb 13, 2023
5354d15
fix topology-required flags
s4ke Feb 14, 2023
13fb7cd
use forced tag in --alias
s4ke Feb 15, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/publish_on_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,8 @@ jobs:
tags: ${{ github.repository_owner }}/hcloud-csi-driver:latest
cache-from: type=registry,ref=${{ github.repository_owner }}/hcloud-csi-driver:buildcache
cache-to: type=registry,ref=${{ github.repository_owner }}/hcloud-csi-driver:buildcache,mode=max
- name: "make docker plugin"
RELEASE_VERSION: ${{ steps.release_version.outputs.value}}
s4ke marked this conversation as resolved.
Show resolved Hide resolved
run: |
cd deploy/docker-swarm/pkg
make push PLUGIN_NAME=hetznercloud/csi-driver-docker PLUGIN_TAG=latest
5 changes: 5 additions & 0 deletions .github/workflows/publish_on_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ jobs:
tags: ${{ github.repository_owner }}/hcloud-csi-driver:${{ steps.release_version.outputs.value}}
cache-from: type=registry,ref=${{ github.repository_owner }}/hcloud-csi-driver:buildcache
cache-to: type=registry,ref=${{ github.repository_owner }}/hcloud-csi-driver:buildcache,mode=max
- name: "make docker plugin"
RELEASE_VERSION: ${{ steps.release_version.outputs.value}}
s4ke marked this conversation as resolved.
Show resolved Hide resolved
run: |
cd deploy/docker-swarm/pkg
make push PLUGIN_NAME=hetznercloud/csi-driver-docker PLUGIN_TAG=$RELEASE_VERSION
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
Expand Down