-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'aws-ebs-csi-driver/' content from commit 4790c45
git-subtree-dir: aws-ebs-csi-driver git-subtree-split: 4790c45471f2b87658378f224477a53782f72ce9
- Loading branch information
0 parents
commit dd33c68
Showing
4,204 changed files
with
1,637,961 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve EBS CSI Driver | ||
labels: | ||
|
||
--- | ||
|
||
/kind bug | ||
|
||
**What happened?** | ||
|
||
**What you expected to happen?** | ||
|
||
**How to reproduce it (as minimally and precisely as possible)?** | ||
|
||
**Anything else we need to know?**: | ||
|
||
**Environment** | ||
- Kubernetes version (use `kubectl version`): | ||
- Driver version: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Enhancement request | ||
about: Suggest an idea for this project | ||
labels: | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem?/Why is this needed** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
/feature | ||
|
||
**Describe the solution you'd like in detail** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
labels: | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like in detail** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Support request | ||
about: Ask questions about the driver | ||
labels: | ||
|
||
--- | ||
|
||
<!-- | ||
STOP -- PLEASE READ! | ||
GitHub is not the right place for support requests. | ||
If you're looking for help, post your question on the [Kubernetes Slack ](http://slack.k8s.io/) Sig-AWS Channel. | ||
If the matter is security related, please disclose it privately via https://kubernetes.io/security/. | ||
--> | ||
|
||
<!-- DO NOT EDIT BELOW THIS LINE --> | ||
|
||
/triage support |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
**Is this a bug fix or adding new feature?** | ||
|
||
**What is this PR about? / Why do we need it?** | ||
|
||
**What testing is done?** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
release-name-template: "helm-chart-{{ .Name }}-{{ .Version }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: Container Images | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
buildx: | ||
# this is to prevent the job to run at forked projects | ||
if: github.repository == 'kubernetes-sigs/aws-ebs-csi-driver' | ||
env: | ||
IMAGE: aws-ebs-csi-driver | ||
DEB_BUILD_TAG: aws-ebs-csi-driver:debian | ||
AL2_BUILD_TAG: aws-ebs-csi-driver:amazonlinux | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v1 | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
- name: Build debian target | ||
run: | | ||
docker buildx build \ | ||
-t $DEB_BUILD_TAG \ | ||
--platform=linux/arm64,linux/amd64 \ | ||
--output="type=image,push=false" . \ | ||
--target=debian-base | ||
- name: Build amazonlinux target | ||
run: | | ||
docker buildx build \ | ||
-t $AL2_BUILD_TAG \ | ||
--platform=linux/arm64,linux/amd64 \ | ||
--output="type=image,push=false" . \ | ||
--target=amazonlinux | ||
- name: Set environment variables | ||
run: | | ||
BRANCH=$(echo $GITHUB_REF | cut -d'/' -f3) | ||
echo "BRANCH=$BRANCH" >> $GITHUB_ENV | ||
if [ "$BRANCH" = "master" ]; then | ||
TAG="latest" | ||
else | ||
TAG=$BRANCH | ||
fi | ||
echo "TAG=$TAG" >> $GITHUB_ENV | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USER }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Push debian target to Docker Hub | ||
run: | | ||
DEB_PUSH_TAG="amazon/$IMAGE:$TAG" | ||
docker buildx build \ | ||
-t $DEB_PUSH_TAG \ | ||
--platform=linux/arm64,linux/amd64 \ | ||
--output="type=image,push=true" . \ | ||
--target=debian-base | ||
- name: Push amazonlinux target to Docker Hub | ||
run: | | ||
AL2_PUSH_TAG="amazon/$IMAGE:$TAG-amazonlinux" | ||
docker buildx build \ | ||
-t $AL2_PUSH_TAG \ | ||
--platform=linux/arm64,linux/amd64 \ | ||
--output="type=image,push=true" . \ | ||
--target=amazonlinux |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Release Helm Charts | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- "charts/**" | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Configure Git | ||
run: | | ||
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected]" | ||
- name: Run chart-releaser | ||
uses: helm/[email protected] | ||
env: | ||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
with: | ||
config: .github/cr.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Release | ||
on: | ||
push: | ||
# Sequence of patterns matched against refs/tags | ||
tags: | ||
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10 | ||
jobs: | ||
build: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Create Release | ||
id: create-release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: ${{ github.ref }} | ||
body: | | ||
AWS EBS CSI Driver | ||
## CHANGELOG | ||
See [CHANGELOG](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/blob/master/CHANGELOG-0.x.md) for full list of changes | ||
draft: false | ||
prerelease: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Binaries for programs and plugins | ||
bin | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
# Test binary, build with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
# Vagrant | ||
.vagrant | ||
Vagrantfile | ||
|
||
# vim | ||
*.swp | ||
|
||
# IntelliJ | ||
.idea/ |
Oops, something went wrong.