Skip to content

Commit

Permalink
👷 Add E2E Chaos tests running on Actions
Browse files Browse the repository at this point in the history
Signed-off-by: Rintaro Okamura <rintaro.okamura@gmail.com>
  • Loading branch information
rinx committed Dec 22, 2020
1 parent 97ae93c commit 1898ec3
Show file tree
Hide file tree
Showing 10 changed files with 848 additions and 0 deletions.
124 changes: 124 additions & 0 deletions .github/helm/values/values-chaos.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
#
# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt )
#
# 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
#
# https://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.
#
gateway:
minReplicas: 3
hpa:
enabled: false
resources:
requests:
cpu: 100m
memory: 50Mi
gateway_config:
index_replica: 3

agent:
minReplicas: 3
maxReplicas: 10
podManagementPolicy: Parallel
hpa:
enabled: false
resources:
requests:
cpu: 100m
memory: 50Mi
ngt:
auto_index_duration_limit: 3m
auto_index_check_duration: 1m
auto_index_length: 1000
dimension: 784

discoverer:
minReplicas: 3
hpa:
enabled: false
resources:
requests:
cpu: 100m
memory: 50Mi

compressor:
minReplicas: 3
hpa:
enabled: false
resources:
requests:
cpu: 100m
memory: 50Mi
compress:
compress_algorithm: gob

backupManager:
minReplicas: 3
hpa:
enabled: false
resources:
requests:
cpu: 100m
memory: 30Mi
image:
repository: vdaas/vald-manager-backup-cassandra
initContainers:
- type: wait-for-cassandra
name: wait-for-scylla
image: cassandra:latest
cassandra:
hosts:
- scylla-0.scylla.default.svc.cluster.local
sleepDuration: 2
env: []
mysql:
enabled: false
cassandra:
enabled: true
config:
hosts:
- scylla-0.scylla.default.svc.cluster.local
consistency: one

indexManager:
replicas: 3
resources:
requests:
cpu: 100m
memory: 30Mi

meta:
minReplicas: 3
hpa:
enabled: false
resources:
requests:
cpu: 100m
memory: 30Mi
image:
repository: vdaas/vald-meta-cassandra
initContainers:
- type: wait-for-cassandra
name: wait-for-scylla
image: cassandra:latest
cassandra:
hosts:
- scylla-0.scylla.default.svc.cluster.local
sleepDuration: 2
env: []
redis:
enabled: false
cassandra:
enabled: true
config:
hosts:
- scylla-0.scylla.default.svc.cluster.local
consistency: one
Loading

0 comments on commit 1898ec3

Please sign in to comment.