Skip to content

Commit

Permalink
Add reasonable default to tf-serving s3 creds (kubeflow#1304)
Browse files Browse the repository at this point in the history
Most of people will use env name as key in secret, might as well make it
default
  • Loading branch information
Michał Jastrzębski authored and k8s-ci-robot committed Aug 2, 2018
1 parent 1baadcd commit d464031
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kubeflow/tf-serving/tf-serving.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@
// Name of the k8s secrets containing S3 credentials
s3SecretName: "",
// Name of the key in the k8s secret containing AWS_ACCESS_KEY_ID.
s3SecretAccesskeyidKeyName: "",
s3SecretAccesskeyidKeyName: "AWS_ACCESS_KEY_ID",

// Name of the key in the k8s secret containing AWS_SECRET_ACCESS_KEY.
s3SecretSecretaccesskeyKeyName: "",
s3SecretSecretaccesskeyKeyName: "AWS_SECRET_ACCESS_KEY",

// S3 region
s3AwsRegion: "us-west-1",
Expand Down

0 comments on commit d464031

Please sign in to comment.