agent: inject static account key

This commit is contained in:
Hendrik Hofstadt 2020-08-21 18:10:54 +02:00
parent e0c2fbf990
commit a8d2f36a12
2 changed files with 23 additions and 2 deletions

View File

@ -34,6 +34,12 @@ spec:
app: guardian
spec:
terminationGracePeriodSeconds: 0
volumes:
- name: key-volume
configMap:
# Provide the name of the ConfigMap containing the files you want
# to add to the container
name: bridge-keypair
containers:
- name: guardiand
image: guardiand-image
@ -71,6 +77,11 @@ spec:
- containerPort: 9000
name: grpc
protocol: TCP
volumeMounts:
- name: key-volume
mountPath: /usr/src/solana
- name: key-volume
mountPath: /root/.config/solana
# volumeClaimTemplates:
# - metadata:
# name: guardian-data
@ -79,3 +90,13 @@ spec:
# resources:
# requests:
# storage: 1Gi
---
apiVersion: v1
kind: ConfigMap
metadata:
name: bridge-keypair
namespace: default
data:
# Key with pubkey 6sbzC1eH4FTujJXWj51eQe25cYvr4xfXbJ1vAj7j2k5J
id.json: |
[14,173,153,4,176,224,201,111,32,237,183,185,159,247,22,161,89,84,215,209,212,137,10,92,157,49,29,192,101,164,152,70,87,65,8,174,214,157,175,126,98,90,54,24,100,177,247,77,19,112,47,44,165,109,233,102,14,86,109,29,134,145,132,141]

View File

@ -214,11 +214,11 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
let addr = format!("0.0.0.0:{}", port).parse().unwrap();
let keypair = {
if let Ok(k) = read_keypair_file("keypair.json") {
if let Ok(k) = read_keypair_file("id.json") {
k
} else {
let k = Keypair::new();
write_keypair_file(&k, "keypair.json").unwrap();
write_keypair_file(&k, "id.json").unwrap();
k
}
};