Skip to content

Commit

Permalink
Support for more than 1 IP
Browse files Browse the repository at this point in the history
  • Loading branch information
sebt3 committed Aug 8, 2024
1 parent bab1796 commit 06f99a8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,6 @@ jobs:
with:
username: ${{ github.repository_owner }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Github Login
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build the Docker image
uses: docker/build-push-action@v3
with:
Expand All @@ -43,6 +36,3 @@ jobs:
${{ github.repository }}:latest
${{ github.repository }}:${{ steps.version.outputs.full }}
${{ github.repository }}:${{ steps.version.outputs.major }}
ghcr.io/${{ github.repository }}:latest
ghcr.io/${{ github.repository }}:${{ steps.version.outputs.full }}
ghcr.io/${{ github.repository }}:${{ steps.version.outputs.major }}
2 changes: 1 addition & 1 deletion .tags
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.2,0.1
0.1.3,0.1
2 changes: 1 addition & 1 deletion provider/servicelb.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ func (c *cloud) newDaemonSet(svc *core.Service) (*apps.DaemonSet, error) {
Name: "DEST_IPS",
ValueFrom: &core.EnvVarSource{
FieldRef: &core.ObjectFieldSelector{
FieldPath: "status.hostIP",
FieldPath: "status.hostIPs",
},
},
},
Expand Down

0 comments on commit 06f99a8

Please sign in to comment.