Skip to content

Commit e7ccf1a

Browse files
committed
feat: initial commit for alauda-1.18
0 parents  commit e7ccf1a

File tree

4,322 files changed

+676176
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,322 files changed

+676176
-0
lines changed

.dockerignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.vscode
2+
.idea
3+
.tekton
4+
tests
5+
.git
6+
testing/go.work*
7+
testing/allure*
8+
testing/config.yaml
9+
testing/output

.github/workflows/lint.yaml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Lint
2+
3+
on:
4+
pull_request:
5+
push:
6+
7+
jobs:
8+
lint:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
helm_version: [3.11.1]
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v2
16+
with:
17+
path: harbor
18+
19+
- name: Set up Helm
20+
uses: azure/setup-helm@v1
21+
with:
22+
version: '${{ matrix.helm_version }}'
23+
24+
- name: Helm version
25+
run:
26+
helm version -c
27+
28+
- name: Run lint
29+
continue-on-error: ${{ startsWith(matrix.helm_version, '2.') }}
30+
working-directory: ./harbor
31+
run:
32+
helm lint .
33+
34+
- name: Update dependency
35+
working-directory: ./harbor
36+
run:
37+
helm dependency update .
38+
39+
- name: Run template for ingress expose
40+
working-directory: ./harbor
41+
run:
42+
helm template --set "expose.type=ingress" --output-dir $(mktemp -d -t output-XXXXXXXXXX) .
43+
44+
- name: Run template for nodePort expose
45+
working-directory: ./harbor
46+
run:
47+
helm template --set "expose.type=nodePort,expose.tls.auto.commonName=127.0.0.1" --output-dir $(mktemp -d -t output-XXXXXXXXXX) .

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
charts/*
2+
requirements.lock
3+
.idea/*

.helmignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.github/*
2+
.tekton/*
3+
docs/*
4+
.git/*
5+
.gitignore
6+
CONTRIBUTING.md
7+
DEVELOPMENT.md
8+
SECURITY.md
9+
test/*
10+
testing/*
11+
subtree/*
12+
13+
# The integration test will generate this directory during execution.
14+
harbor-e2e-reports/*

0 commit comments

Comments
 (0)