-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
170 additions
and
10 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
19 changes: 19 additions & 0 deletions
19
tests/e2e/elasticsearch/es-streaming-autoprovisioned/00-install.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
apiVersion: jaegertracing.io/v1 | ||
kind: Jaeger | ||
metadata: | ||
name: auto-provisioned | ||
spec: | ||
strategy: streaming | ||
storage: | ||
type: elasticsearch | ||
elasticsearch: | ||
nodeCount: 1 | ||
resources: | ||
requests: | ||
cpu: 100m | ||
memory: 1Gi | ||
limits: | ||
memory: 1Gi | ||
ingress: | ||
enabled: true | ||
security: "none" |
29 changes: 29 additions & 0 deletions
29
tests/e2e/elasticsearch/es-streaming-autoprovisioned/03-assert.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Assert the Jaeger collector is up and running | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: auto-provisioned-ingester | ||
spec: | ||
replicas: 1 | ||
status: | ||
readyReplicas: 1 | ||
--- | ||
# Assert the Jaeger query is up and running | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: auto-provisioned-query | ||
spec: | ||
replicas: 1 | ||
status: | ||
readyReplicas: 1 | ||
--- | ||
# Assert the Jaeger collector is up and running | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: auto-provisioned-collector | ||
spec: | ||
replicas: 1 | ||
status: | ||
readyReplicas: 1 |
5 changes: 5 additions & 0 deletions
5
tests/e2e/elasticsearch/es-streaming-autoprovisioned/README.md
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,5 @@ | ||
# Elasticsearch - ES autoprovisioned + Kafka autoprovisioned | ||
## What is this test case testing? | ||
|
||
Test a Jaeger instance with an Elasticsearch instance autoprovisioned using | ||
`streaming` as deployment strategy. The Kafka cluster is autoprovisioned too. |
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
6 changes: 6 additions & 0 deletions
6
tests/e2e/examples/examples-openshift-with-htpasswd/00-install.yaml.template
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,6 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: htpasswd | ||
data: | ||
htpasswd: {{ .Env.SECRET }} |
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
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