Commit 84a50a19 authored by Guangbo Chen's avatar Guangbo Chen
Browse files

init system library repo

parents
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+1 −0
Original line number Diff line number Diff line
.DS_Store

README.md

0 → 100644
+19 −0
Original line number Diff line number Diff line
system-library
============

Rancher 2.0 system library charts.

## License
Copyright (c) 2018 [Rancher Labs, Inc.](http://rancher.com)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
+4 −0
Original line number Diff line number Diff line
# Ignore everything in this directory
*
# Except this file
!.gitignore

test/.dockerignore

0 → 100644
+2 −0
Original line number Diff line number Diff line
*
! .testenv

test/.testenv

0 → 100644
+24 −0
Original line number Diff line number Diff line
# The name of the Git remote to check against for changed charts
REMOTE=system-library

# The name of the Git target branch
TARGET_BRANCH=master

# Chart directories separated by a space
CHART_DIRS=(
    charts
)

# Charts that should be skipped
EXCLUDED_CHARTS=(
)

# Additional chart repos to add (<name>=<url>), separated by a space
CHART_REPOS=(
)

# Timeout for chart installation in seconds
TIMEOUT=600

# Maintainer names in Chart.yaml are validated to be existing Github accounts, default to true
VALIDATE_MAINTAINERS=true