Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/kms-connector/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: kms-connector
description: A helm chart to distribute and deploy the Zama KMS Connector services
version: 1.4.0
version: 1.4.1
apiVersion: v2
keywords:
- fhevm
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@ spec:
value: {{ .Values.commonConfig.gatewayContractAddresses.gatewayConfig | quote }}
- name: KMS_CONNECTOR_KMS_GENERATION_CONTRACT__ADDRESS
value: {{ .Values.commonConfig.gatewayContractAddresses.kmsGeneration | quote }}
- name: KMS_CONNECTOR_ETHEREUM_URL
value: {{ .Values.commonConfig.ethereumUrl | quote }}
- name: KMS_CONNECTOR_ETHEREUM_CHAIN_ID
value: {{ .Values.commonConfig.ethereumChainId | quote }}
- name: KMS_CONNECTOR_KMS_VERIFIER_ADDRESS
value: {{ .Values.commonConfig.ethereumContractAddresses.kmsVerifier | quote }}
{{- if default .Values.commonConfig.tracing.enabled .Values.kmsConnectorGwListener.tracing.enabled }}
- name: OTEL_EXPORTER_OTLP_ENDPOINT
value: {{ .Values.commonConfig.tracing.endpoint }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@ spec:
value: {{ .Values.commonConfig.gatewayContractAddresses.gatewayConfig | quote }}
- name: KMS_CONNECTOR_KMS_GENERATION_CONTRACT__ADDRESS
value: {{ .Values.commonConfig.gatewayContractAddresses.kmsGeneration | quote }}
- name: KMS_CONNECTOR_ETHEREUM_URL
value: {{ .Values.commonConfig.ethereumUrl | quote }}
- name: KMS_CONNECTOR_ETHEREUM_CHAIN_ID
value: {{ .Values.commonConfig.ethereumChainId | quote }}
- name: KMS_CONNECTOR_KMS_VERIFIER_ADDRESS
value: {{ .Values.commonConfig.ethereumContractAddresses.kmsVerifier | quote }}
{{- if .Values.kmsConnectorTxSender.wallet.awsKms.enabled }}
- name: KMS_CONNECTOR_AWS_KMS_CONFIG__KEY_ID
valueFrom:
Expand Down
10 changes: 10 additions & 0 deletions charts/kms-connector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ commonConfig:
gatewayConfig: "0xeAC2EfFA07844aB326D92d1De29E136a6793DFFA"
kmsGeneration: "0xF0bFB159C7381F7CB332586004d8247252C5b816"

# Ethereum chain RPC node endpoint (HTTP)
ethereumUrl: "http://ethereum-node:8545"

# Ethereum chain identifier
ethereumChainId: "11155111"

# Ethereum smart contract addresses
ethereumContractAddresses:
kmsVerifier: "0x0000000000000000000000000000000000000000"

# Distributed tracing configuration
tracing:
enabled: false
Expand Down
Loading