-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/1.3.0: (119 commits) release 1.3.0 (#282) check version only on develop (#281) Enable FluentD Prometheus Endpoint (#257) trigger functional test from sub plugin repos (#279) add latest hec image to firelens readme (#280) add latest hec image to firelens readme (#280) Firelens (#260) ingest api support (#253) abstract HEC info (#254) For multiline events, use the timestamp of the first event and d… (#244) remove version label from selector in manifests (#229) added indexed fields to logging and objects (#231) Missing end clause (#238) Add support for kube apiserver audit logs (#232) updated configuration for systemd plugin to use matches as filte… (#233) index-routing-objects (#235) openshift fix (#226) Docker private images (#222) Update README to reflect support policy (#227) Custom filters (#216) ...
- Loading branch information
Showing
76 changed files
with
1,431 additions
and
493 deletions.
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
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
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: str() | ||
home: str() | ||
version: str() | ||
appVersion: any(str(), num()) | ||
description: str() | ||
keywords: list(str(), required=False) | ||
sources: list(str(), required=False) | ||
maintainers: list(include('maintainer'), required=False) | ||
icon: str(required=False) | ||
engine: str(required=False) | ||
condition: str(required=False) | ||
tags: str(required=False) | ||
deprecated: bool(required=False) | ||
kubeVersion: str(required=False) | ||
annotations: map(str(), str(), required=False) | ||
--- | ||
maintainer: | ||
name: str() | ||
email: str(required=False) | ||
url: str(required=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,24 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
LATEST_COMMIT=$(git rev-parse HEAD) | ||
VERSION_COMMIT=$(git log -1 --format=format:%H VERSION) | ||
if [ $VERSION_COMMIT = $LATEST_COMMIT ]; | ||
then | ||
if [ -s VERSION ] # Check if content is empty | ||
then | ||
VERSION=`cat VERSION` | ||
echo "VERSION is changed to $VERSION" | ||
else | ||
echo "[ERROR] VERSION file is empty." | ||
exit 1 | ||
fi | ||
git config user.email "splunk-oss-admin@splunk.com" | ||
git config user.name "splunk-oss-admin" | ||
git checkout develop | ||
git pull origin develop | ||
git checkout -b release/$VERSION origin/develop | ||
git push https://$RELEASE_GITHUB_USER:$RELEASE_GITHUB_PASS@github.com/splunk/splunk-connect-for-kubernetes.git release/$VERSION | ||
git checkout master | ||
git merge --no-edit release/$VERSION | ||
git push https://$RELEASE_GITHUB_USER:$RELEASE_GITHUB_PASS@github.com/splunk/splunk-connect-for-kubernetes.git master | ||
fi |
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
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
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,17 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
# chart template linting | ||
wget https://github.com/helm/chart-testing/releases/download/v2.3.3/chart-testing_2.3.3_linux_amd64.tar.gz | ||
tar -xvf chart-testing_2.3.3_linux_amd64.tar.gz | ||
sudo chmod +x ct | ||
sudo mv ct /usr/local/bin/ct | ||
|
||
# lint helm charts | ||
echo "Linting charts" | ||
helm lint helm-chart/* | ||
echo "Linting charts with CI values" | ||
helm lint --values .circleci/sck_values.yml helm-chart/* | ||
cd .circleci | ||
echo "Linting charts ct lint tool" | ||
ct lint helm-chart/* |
Oops, something went wrong.