Skip to content

Commit

Permalink
release v1.31.0 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
msanft authored May 24, 2024
1 parent 4eeb02f commit 18591b1
Show file tree
Hide file tree
Showing 190 changed files with 12,563 additions and 50,574 deletions.
8 changes: 8 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.github/
.idea/
bin/
hack/
charts/
deploy/
docs/
examples/
2 changes: 1 addition & 1 deletion .github/workflows/output-code-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
}
- name: 'Determine source PR'
uses: potiuk/get-workflow-origin@08219db9dbbbec802d571eaf0e14ece0bc005f72
uses: potiuk/get-workflow-origin@e2dae063368361e4cd1f510e8785cd73bca9352e
id: source-run-info
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
12 changes: 10 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ bin
# Test binary, build with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
# Output of the go coverage tool
*.out
coverage.html

# Vagrant
.vagrant
Expand All @@ -22,7 +23,7 @@ Vagrantfile
# IntelliJ
.idea/

#MacOS system files
# MacOS system files
*.DS_Store

# Vendor dir
Expand All @@ -31,5 +32,12 @@ vendor/
# .image-* files used by Makefile
.image-*

# Files used by Makefile when upgrading sidecars
hack/release-scripts/image-digests.yaml

# E2E artifacts
_rundir/
_artifacts/

# generated sonobuoy files
sonobuoy.yaml
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
FROM registry.k8s.io/build-image/debian-base:bullseye-v1.4.3 AS builder

RUN apt-get update && apt-get install -y wget libcryptsetup-dev build-essential tar git pkgconf
RUN wget https://golang.org/dl/go1.20.5.linux-amd64.tar.gz
RUN rm -rf /usr/local/go && tar -C /usr/local -xzf go1.20.5.linux-amd64.tar.gz
RUN wget https://golang.org/dl/go1.22.3.linux-amd64.tar.gz
RUN rm -rf /usr/local/go && tar -C /usr/local -xzf go1.22.3.linux-amd64.tar.gz
ENV PATH=$PATH:/usr/local/go/bin

WORKDIR /go/src/github.com/kubernetes-sigs/aws-ebs-csi-driver
Expand All @@ -49,7 +49,7 @@ ARG TARGETOS
ARG TARGETARCH
ARG VERSION

RUN OS=$TARGETOS ARCH=$TARGETARCH make $TARGETOS/$TARGETARCH
RUN OS=$TARGETOS ARCH=$TARGETARCH make

# Driver image
FROM registry.k8s.io/build-image/debian-base:bullseye-v1.4.3 AS linux-amazon
Expand Down
Loading

0 comments on commit 18591b1

Please sign in to comment.