mirror of
https://github.com/submariner-io/submariner-charts.git
synced 2026-09-21 22:00:35 +00:00
Compare commits
8
Commits
v0.9.0-rc0
...
v0.10.0-m2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
69ff334c72 | ||
|
|
df9a462b9b | ||
|
|
12c8e9b3ff | ||
|
|
55b0610620 | ||
|
|
4b52dc668e | ||
|
|
6f94f29563 | ||
|
|
f0a0ae93bf | ||
|
|
2b992c9f04 |
@@ -6,7 +6,7 @@ labels: support
|
|||||||
---
|
---
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
GitHub may not the right place for support requests.
|
GitHub may not be the right place for support requests.
|
||||||
|
|
||||||
You can also post your question on the [Submariner
|
You can also post your question on the [Submariner
|
||||||
Slack](https://kubernetes.slack.com/archives/C010RJV694M) or the Submariner
|
Slack](https://kubernetes.slack.com/archives/C010RJV694M) or the Submariner
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<!-- Thanks for sending a pull request! Here are some tips for you:
|
||||||
|
|
||||||
|
1. If this is your first time, please read our developer guide: https://submariner.io/development/
|
||||||
|
2. Ensure you have added the appropriate tests for your PR: https://submariner.io/development/code-review/#test-new-functionality
|
||||||
|
3. Read the code review guide to ease the review process: https://submariner.io/development/code-review/
|
||||||
|
4. If the PR is unfinished, mark it as a draft: https://submariner.io/development/code-review/#mark-work-in-progress-prs-as-drafts
|
||||||
|
5. If you are using CI to debug, use your private fork: https://submariner.io/development/code-review/#use-private-forks-for-debugging-prs-by-running-ci
|
||||||
|
6. Add labels to the PR as appropriate.
|
||||||
|
|
||||||
|
This template is based on the K8s/K8s template:
|
||||||
|
|
||||||
|
https://github.com/kubernetes/kubernetes/blob/master/.github/PULL_REQUEST_TEMPLATE.md
|
||||||
|
-->
|
||||||
@@ -12,15 +12,14 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
cable_driver: ['libreswan', 'wireguard']
|
cable_driver: ['libreswan', 'wireguard', 'vxlan']
|
||||||
globalnet: ['', 'globalnet']
|
globalnet: ['', 'globalnet']
|
||||||
k8s_version: ['1.17.17']
|
k8s_version: ['1.17']
|
||||||
lighthouse: ['', 'lighthouse']
|
lighthouse: ['', 'lighthouse']
|
||||||
include:
|
include:
|
||||||
# Recentness of K8s versions are limited by kindest/node image releases
|
- k8s_version: '1.18'
|
||||||
- k8s_version: 1.18.15
|
- k8s_version: '1.19'
|
||||||
- k8s_version: 1.19.7
|
- k8s_version: '1.20'
|
||||||
- k8s_version: 1.20.2
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out the repository
|
- name: Check out the repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|||||||
@@ -8,12 +8,13 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
e2e:
|
e2e:
|
||||||
name: E2E
|
name: E2E
|
||||||
|
if: github.repository_owner == 'submariner-io'
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
cable_driver: ['libreswan', 'wireguard']
|
cable_driver: ['libreswan', 'wireguard', 'vxlan']
|
||||||
globalnet: ['', 'globalnet']
|
globalnet: ['', 'globalnet']
|
||||||
lighthouse: ['', 'lighthouse']
|
lighthouse: ['', 'lighthouse']
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
@@ -5,20 +5,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
dco:
|
|
||||||
name: DCO in Commit Message(s)
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Get PR commits
|
|
||||||
id: 'get-pr-commits'
|
|
||||||
uses: tim-actions/get-pr-commits@master
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
- name: Run DCO check
|
|
||||||
uses: tim-actions/dco@master
|
|
||||||
with:
|
|
||||||
commits: ${{ steps.get-pr-commits.outputs.commits }}
|
|
||||||
|
|
||||||
gitlint:
|
gitlint:
|
||||||
name: Commit Message(s)
|
name: Commit Message(s)
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
markdown-link-check-periodic:
|
markdown-link-check-periodic:
|
||||||
name: Markdown Links (all files)
|
name: Markdown Links (all files)
|
||||||
|
if: github.repository_owner == 'submariner-io'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out the repository
|
- name: Check out the repository
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
name: Release
|
name: Release
|
||||||
|
if: github.repository_owner == 'submariner-io'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
# submariner-charts
|
# submariner-charts
|
||||||
|
|
||||||
|
<!-- markdownlint-disable line-length -->
|
||||||
|
[](https://bestpractices.coreinfrastructure.org/projects/4865)
|
||||||
|
[](https://github.com/submariner-io/submariner-charts/actions?query=workflow%3A%22Release+Charts%22)
|
||||||
|
[](https://github.com/submariner-io/submariner-charts/actions?query=workflow%3APeriodic)
|
||||||
|
[](https://github.com/submariner-io/submariner-charts/actions?query=workflow%3A%22Flake+Finder%22)
|
||||||
|
<!-- markdownlint-enable line-length -->
|
||||||
|
|
||||||
Please see the [Helm docs on Submariner's website](https://submariner.io/operations/deployment/helm/).
|
Please see the [Helm docs on Submariner's website](https://submariner.io/operations/deployment/helm/).
|
||||||
|
|
||||||
## Development workflow
|
## Development workflow
|
||||||
|
|||||||
@@ -397,6 +397,7 @@ rules:
|
|||||||
resources:
|
resources:
|
||||||
- configmaps
|
- configmaps
|
||||||
verbs:
|
verbs:
|
||||||
|
- create
|
||||||
- get
|
- get
|
||||||
- list
|
- list
|
||||||
- watch
|
- watch
|
||||||
@@ -411,11 +412,13 @@ rules:
|
|||||||
- create
|
- create
|
||||||
- update
|
- update
|
||||||
- delete
|
- delete
|
||||||
- apiGroups: # pods and services are looked up to figure out network settings
|
- watch
|
||||||
|
- apiGroups: # pods, services and nodes are looked up to figure out network settings
|
||||||
- ""
|
- ""
|
||||||
resources:
|
resources:
|
||||||
- pods
|
- pods
|
||||||
- services
|
- services
|
||||||
|
- nodes
|
||||||
verbs:
|
verbs:
|
||||||
- get
|
- get
|
||||||
- list
|
- list
|
||||||
|
|||||||
Reference in New Issue
Block a user