-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add Fuzz Test for distributed mode
- Loading branch information
Showing
3 changed files
with
59 additions
and
25 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Setup Etcd cluster | ||
description: Deploy Etcd cluster on Kubernetes | ||
inputs: | ||
etcd-replica-count: | ||
default: 1 | ||
description: "Etcd replica count" | ||
namespace: | ||
default: "etcd-cluster" | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Install etcd cluster | ||
shell: bash | ||
run: | | ||
helm upgrade \ | ||
--install etcd oci://registry-1.docker.io/bitnamicharts/etcd \ | ||
--set replicaCount=${{ inputs.etcd-replica-count }} \ | ||
--set auth.rbac.create=false \ | ||
--set auth.rbac.token.enabled=false \ | ||
--set persistence.size=1Gi \ | ||
--create-namespace \ | ||
-n ${{ inputs.namespace }} |
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