-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
{chart,scripts}: move datasource test to helm chart
Signed-off-by: Paweł Krupa (paulfantom) <[email protected]>
- Loading branch information
1 parent
017feb1
commit 6a21c07
Showing
8 changed files
with
215 additions
and
433 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,13 +19,13 @@ jobs: | |
uses: helm/[email protected] | ||
|
||
- name: Run chart-testing (lint) | ||
run: ct lint --config ct.yaml | ||
run: make lint | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
kube-version: | ||
kube: | ||
- "1.23" | ||
- "1.24" | ||
steps: | ||
|
@@ -39,23 +39,15 @@ jobs: | |
|
||
- name: Start kuberenetes cluster with cert-manager | ||
env: | ||
KUBE_VERSION: ${{ matrix.kube-version }} | ||
KUBE_VERSION: ${{ matrix.kube }} | ||
run: | | ||
make cert-manager | ||
- name: Wait for cluster to finish bootstraping | ||
run: kubectl wait --for=condition=Ready pods --all --all-namespaces --timeout=300s | ||
|
||
- name: Create namespace for installing the chart | ||
run: kubectl create namespace tobs-test | ||
|
||
- name: Run chart-testing (install) | ||
run: ct install --config ct.yaml --namespace tobs-test | ||
|
||
# TODO(onprem): Figure out a workaround to test datasources as ct just removes | ||
# the chart release after a successful install. | ||
# - name: Check datasources | ||
# run: make check-datasources | ||
- name: Run e2e chart-testing | ||
run: make e2e | ||
|
||
test-result: | ||
name: End-to-End Test Results | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
.vscode/ | ||
.idea/ | ||
chart/Chart.lock | ||
chart/charts/* | ||
chart/charts | ||
tmp/ | ||
manifests.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
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,39 @@ | ||
# This is the default values for the chart to run in CI system and it can be used as | ||
# a base template for other *-values.yaml files. Only resource requests are nullified | ||
# to allow starting the stack on github action runner and prevent issues related | ||
# to pod scheduling due to insufficient host resources. | ||
|
||
timescaledb-single: | ||
resources: null | ||
|
||
promscale: | ||
resources: null | ||
|
||
kube-prometheus-stack: | ||
alertmanager: | ||
alertmanagerSpec: | ||
resources: null | ||
prometheusOperator: | ||
prometheusConfigReloader: | ||
resources: null | ||
resources: null | ||
prometheus: | ||
prometheusSpec: | ||
resources: null | ||
grafana: | ||
resources: null | ||
prometheus: | ||
datasource: | ||
enabled: true | ||
# By default url of data source is set to ts-prom connector instance | ||
# deployed with this chart. If a connector isn't used this should be | ||
# set to the prometheus-server. | ||
url: "http://{{ .Release.Name }}-promscale-connector.{{ .Release.Namespace }}.svc:9201" | ||
kube-state-metrics: | ||
resources: null | ||
prometheus-node-exporter: | ||
resources: null | ||
|
||
opentelemetry-operator: | ||
manager: | ||
resources: null |
Oops, something went wrong.