mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
* minor change for volume permission spec Signed-off-by: Yash Sharma <yashrsharma44@gmail.com> * added basic files of clickhouse chart Signed-off-by: Yash Sharma <yashrsharma44@gmail.com> * added a simple deployment yaml Signed-off-by: Yash Sharma <yashrsharma44@gmail.com> * added clickhouse support in signoz Signed-off-by: Yash Sharma <yashrsharma44@gmail.com> * clickhouse working Signed-off-by: Yash Sharma <yashrsharma44@gmail.com> * chore: helm charts wip * chore: fixing path of otel-path in hotrod * chore: wip running clickhouse in templates * chore: clickhouse working in templates * chore: clickhouse helm chart upgraded to latest query-service and frontend images * chore: cleanup and upgrading signoz chart version * chore: adding alertmanager and minor fixes * chore: persistence enabled for query-service and clickhouse * chore: scrape interval reduced to 30s * chore: changed crd api version from v1beta1 to v1 * chore: removed druid parts in values.yaml * chore: log container removed from clickhouse * chore: removed *.tgz from gitignore to add charts * chore: added dependency charts * chore: added clickhouse-operator templates Co-authored-by: Yash Sharma <yashrsharma44@gmail.com>
82 lines
1.9 KiB
YAML
82 lines
1.9 KiB
YAML
suite: test ingress
|
|
templates:
|
|
- ingress.yaml
|
|
tests:
|
|
- it: should be empty if ingress is not enabled
|
|
asserts:
|
|
- hasDocuments:
|
|
count: 0
|
|
- it: should have apiVersion extensions/v1beta1 for k8s < 1.14
|
|
set:
|
|
ingress.enabled: true
|
|
capabilities:
|
|
majorVersion: 1
|
|
minorVersion: 13
|
|
asserts:
|
|
- hasDocuments:
|
|
count: 1
|
|
- isKind:
|
|
of: Ingress
|
|
- isAPIVersion:
|
|
of: extensions/v1beta1
|
|
- it: should have apiVersion networking.k8s.io/v1beta1 for k8s < 1.19
|
|
set:
|
|
ingress.enabled: true
|
|
capabilities:
|
|
majorVersion: 1
|
|
minorVersion: 18
|
|
asserts:
|
|
- hasDocuments:
|
|
count: 1
|
|
- isKind:
|
|
of: Ingress
|
|
- isAPIVersion:
|
|
of: networking.k8s.io/v1beta1
|
|
- it: should have apiVersion networking.k8s.io/v1 for k8s >= 1.19
|
|
set:
|
|
ingress.enabled: true
|
|
capabilities:
|
|
majorVersion: 1
|
|
minorVersion: 19
|
|
asserts:
|
|
- hasDocuments:
|
|
count: 1
|
|
- isKind:
|
|
of: Ingress
|
|
- isAPIVersion:
|
|
of: networking.k8s.io/v1
|
|
- it: should have an ingressClassName for k8s >= 1.19
|
|
set:
|
|
ingress.enabled: true
|
|
ingress.className: nginx-test
|
|
capabilities:
|
|
majorVersion: 1
|
|
minorVersion: 19
|
|
asserts:
|
|
- hasDocuments:
|
|
count: 1
|
|
- equal:
|
|
path: spec.ingressClassName
|
|
value: nginx-test
|
|
- it: should match snapshot of default values
|
|
set:
|
|
ingress.enabled: true
|
|
ingress.className: nginx-test
|
|
chart:
|
|
version: 1.0.0
|
|
appVersion: 1.0.0
|
|
asserts:
|
|
- matchSnapshot: { }
|
|
- it: should match snapshot of default values with old kubernetes ingress
|
|
set:
|
|
ingress.enabled: true
|
|
ingress.className: nginx-test
|
|
capabilities:
|
|
majorVersion: 1
|
|
minorVersion: 17
|
|
chart:
|
|
version: 1.0.0
|
|
appVersion: 1.0.0
|
|
asserts:
|
|
- matchSnapshot: { }
|