Skip to content
This repository was archived by the owner on Oct 11, 2024. It is now read-only.
Merged
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
4 changes: 2 additions & 2 deletions core/adminserver/admin_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ func privKeyOrGen(ctx context.Context, privKey *any.Any, keygen keys.ProtoGenera
// - with a set PrivateKey is not nil, otherwise KeySpec is set.
// - with a tree description of "KT directory %v"
func treeConfig(treeTemplate *tpb.CreateTreeRequest, privKey *any.Any, directoryID string) *tpb.CreateTreeRequest {
config := *treeTemplate
config := proto.Clone(treeTemplate).(*tpb.CreateTreeRequest)

if privKey != nil {
config.Tree.PrivateKey = privKey
Expand All @@ -215,7 +215,7 @@ func treeConfig(treeTemplate *tpb.CreateTreeRequest, privKey *any.Any, directory
if len(directoryID) >= maxDisplayNameLength {
config.Tree.DisplayName = directoryID[:maxDisplayNameLength]
}
return &config
return config
}

// CreateDirectory reachs out to Trillian to produce new trees.
Expand Down
3 changes: 2 additions & 1 deletion deploy/kubernetes/base/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ apiVersion: v1
metadata:
name: configmap
data:
DB_HOST: db
DB_NAME: test:zaphod@tcp(db:3306)/test
DB_ENGINE: mysql
17 changes: 17 additions & 0 deletions deploy/kubernetes/base/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,20 @@ resources:
- sequencer-service.yaml
- server-deployment.yaml
- server-service.yaml
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
images:
- name: gcr.io/key-transparency/init
newTag: 15d6d36653d9cce064d2b94ee8d55cab0127fa8b
- name: gcr.io/key-transparency/keytransparency-monitor
newTag: 15d6d36653d9cce064d2b94ee8d55cab0127fa8b
- name: gcr.io/key-transparency/keytransparency-sequencer
newTag: 15d6d36653d9cce064d2b94ee8d55cab0127fa8b
- name: gcr.io/key-transparency/keytransparency-server
newTag: 15d6d36653d9cce064d2b94ee8d55cab0127fa8b
- name: gcr.io/trillian-opensource-ci/log_server
newTag: v1.3.10
- name: gcr.io/trillian-opensource-ci/log_signer
newTag: v1.3.10
- name: gcr.io/trillian-opensource-ci/map_server
newTag: v1.3.10
9 changes: 8 additions & 1 deletion deploy/kubernetes/base/log-server-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,16 @@ spec:
labels:
io.kompose.service: log-server
spec:
volumes: []
containers:
- name: trillian-logserver
args: [
"--mysql_uri=test:zaphod@tcp($(DB_HOST):3306)/test",
"--mysql_uri=$(DB_NAME)",
"--cloudspanner_uri=$(DB_NAME)",
"--cloudspanner_dequeue_bucket_fraction=1.0",
"--cloudspanner_readonly_staleness=1s",
"--storage_system=$(DB_ENGINE)",
"--quota_system=noop",
"--rpc_endpoint=0.0.0.0:8090",
"--http_endpoint=0.0.0.0:8091",
"--alsologtostderr"
Expand All @@ -34,5 +40,6 @@ spec:
- containerPort: 8090
- containerPort: 8091
resources: {}
volumeMounts: []
restartPolicy: Always
status: {}
10 changes: 9 additions & 1 deletion deploy/kubernetes/base/log-signer-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,21 @@ spec:
labels:
io.kompose.service: log-signer
spec:
volumes: []
containers:
- name: trillian-logsigner
args: [
"--mysql_uri=test:zaphod@tcp($(DB_HOST):3306)/test",
"--mysql_uri=$(DB_NAME)",
"--cloudspanner_uri=$(DB_NAME)",
"--cloudspanner_dequeue_bucket_fraction=1.0",
"--cloudspanner_readonly_staleness=1s",
"--storage_system=$(DB_ENGINE)",
"--quota_system=noop",
"--http_endpoint=0.0.0.0:8091",
"--sequencer_guard_window=0s",
"--sequencer_interval=1s",
"--num_sequencers=1",
"--master_hold_interval=1h",
"--batch_size=50",
"--force_master=true",
"--alsologtostderr"
Expand All @@ -37,5 +44,6 @@ spec:
ports:
- containerPort: 8091
resources: {}
volumeMounts: []
restartPolicy: Always
status: {}
9 changes: 8 additions & 1 deletion deploy/kubernetes/base/map-server-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,16 @@ spec:
labels:
io.kompose.service: map-server
spec:
volumes: []
containers:
- name: trillian-mapserver
args: [
"--mysql_uri=test:zaphod@tcp($(DB_HOST):3306)/test",
"--mysql_uri=$(DB_NAME)",
"--cloudspanner_uri=$(DB_NAME)",
"--storage_system=$(DB_ENGINE)",
"--cloudspanner_dequeue_bucket_fraction=1.0",
"--cloudspanner_readonly_staleness=1s",
"--quota_system=noop",
"--rpc_endpoint=0.0.0.0:8090",
"--http_endpoint=0.0.0.0:8091",
"--single_transaction",
Expand All @@ -35,5 +41,6 @@ spec:
- containerPort: 8090
- containerPort: 8091
resources: {}
volumeMounts: []
restartPolicy: Always
status: {}
5 changes: 3 additions & 2 deletions deploy/kubernetes/base/sequencer-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,14 @@ spec:
- command:
- /keytransparency-sequencer
- --force_master
- --db=test:zaphod@tcp($(DB_HOST):3306)/test
- --db=$(DB_NAME)
- --db_engine=$(DB_ENGINE)
- --addr=0.0.0.0:8080
- --log-url=log-server:8090
- --map-url=map-server:8090
- --tls-key=/run/secrets/tls.key
- --tls-cert=/run/secrets/tls.crt
- --batch-size=500
- --batch-size=400
- --refresh=1s
- --alsologtostderr
- --v=5
Expand Down
5 changes: 3 additions & 2 deletions deploy/kubernetes/base/server-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,15 @@ spec:
- command:
- /keytransparency-server
- --addr=0.0.0.0:8080
- --db=test:zaphod@tcp($(DB_HOST):3306)/test
- --db=$(DB_NAME)
- --db_engine=$(DB_ENGINE)
- --log-url=log-server:8090
- --map-url=map-server:8090
- --tls-key=/run/secrets/tls.key
- --tls-cert=/run/secrets/tls.crt
- --auth-type=insecure-fake
- --alsologtostderr
- --v=5
- --v=3
image: gcr.io/key-transparency/keytransparency-server:latest
envFrom:
- configMapRef:
Expand Down
14 changes: 14 additions & 0 deletions deploy/kubernetes/overlays/gke/cloudspanner-creds.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
- op: add
path: /spec/template/spec/volumes/-
value:
name: secrets-cloudspanner
secret:
secretName: cloudspanner

- op: add
path: /spec/template/spec/containers/0/volumeMounts/-
value:
name: secrets-cloudspanner
mountPath: /secrets/cloudspanner
readOnly: true

5 changes: 4 additions & 1 deletion deploy/kubernetes/overlays/gke/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@ apiVersion: v1
metadata:
name: configmap
data:
DB_HOST: 127.0.0.1
DB_NAME: projects/key-transparency/instances/keytransparency-dev/databases/sandbox
DB_ENGINE: cloud_spanner
GOOGLE_APPLICATION_CREDENTIALS: /secrets/cloudspanner/credentials.json

5 changes: 4 additions & 1 deletion deploy/kubernetes/overlays/gke/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ bases:
resources:
- managed-cert.yaml
patches:
- path: cloudsql-sidecar.yaml
- path: cloudspanner-creds.yaml
target:
kind: Deployment
# - path: cloudsql-sidecar.yaml
# target:
# kind: Deployment
patchesStrategicMerge:
- configmap.yaml
- ingress.yaml
Expand Down
14 changes: 7 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/google/keytransparency
go 1.12

require (
cloud.google.com/go/spanner v1.5.2-0.20200519214259-752f788f92e5
cloud.google.com/go/spanner v1.7.0
github.com/VividCortex/mysqlerr v0.0.0-20170204212430-6c6b55f8796f
github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f // indirect
github.com/go-kit/kit v0.9.0
Expand All @@ -14,28 +14,28 @@ require (
github.com/google/certificate-transparency-go v1.1.0 // indirect
github.com/google/go-cmp v0.5.0
github.com/google/tink/go v1.4.0-rc2
github.com/google/trillian v1.3.9-0.20200515134453-00fd1983ab83
github.com/google/trillian v1.3.10
github.com/grpc-ecosystem/go-grpc-middleware v1.2.0
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
github.com/grpc-ecosystem/grpc-gateway v1.14.6
github.com/kr/pretty v0.1.0
github.com/kylelemons/godebug v1.1.0
github.com/pelletier/go-toml v1.6.0 // indirect
github.com/prometheus/client_golang v1.7.0
github.com/prometheus/client_golang v1.7.1
github.com/sirupsen/logrus v1.6.0 // indirect
github.com/spf13/cobra v0.0.7
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.7.0
go.uber.org/atomic v1.5.1 // indirect
gocloud.dev v0.20.0
golang.org/x/crypto v0.0.0-20200206161412-a0c6ece9d31a
golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a
golang.org/x/time v0.0.0-20191024005414-555d28b269f0
golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1
google.golang.org/api v0.28.0
google.golang.org/genproto v0.0.0-20200608115520-7c474a2e3482
google.golang.org/genproto v0.0.0-20200626011028-ee7919e894b5
google.golang.org/grpc v1.29.1
google.golang.org/protobuf v1.24.0
google.golang.org/protobuf v1.25.0
gopkg.in/yaml.v2 v2.2.8 // indirect
)

Expand Down
Loading