Skip to content

Commit

Permalink
update to v0.0.2 of credhub-webui
Browse files Browse the repository at this point in the history
  • Loading branch information
shreddedbacon committed Dec 15, 2018
1 parent ccd85fa commit 4d6d065
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ git clone https://github.com/shreddedbacon/credhub-webui-boshrelease.git credhub
```
## Deploy
```
bosh -d credhub-webui deploy manifests/deployment.yml
bosh -d credhub-webui deploy manifests/deployment.yml \
-v credhub_webui_hostname=credhubwebui.local \
-v credhub_client_id=credhub \
-v credhub_client_secret=secret \
-v credhub_server=https://credhubserver.local:8844
```
## List Instances
```
Expand Down
4 changes: 2 additions & 2 deletions config/blobs.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
credhub-webui/credhub-webui-linux-0.0.2.tgz:
size: 9
sha: d205cbd6783332a212c5ae92d73c77178c2d2f28
size: 5056339
sha: 14798f6144ffe2b714e68cb5050266dbcf57a2b3
2 changes: 1 addition & 1 deletion get_blobs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ fi
if [ ! -d .downloads ]; then
mkdir -p .downloads
fi
curl -L https://github.com/shreddedbacon/credhub-webui/releases/download/v$VERSION/credhub-webui-linux-$VERSION.tgz > .downloads/credhub-webui-linux-$VERSION.tgz
curl -L https://github.com/shreddedbacon/credhub-webui/releases/download/v$VERSION/credhub-webui-linux-$VERSION.tar.gz > .downloads/credhub-webui-linux-$VERSION.tgz
bosh add-blob .downloads/credhub-webui-linux-$VERSION.tgz credhub-webui/credhub-webui-linux-$VERSION.tgz
13 changes: 8 additions & 5 deletions manifests/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: credhub-webui

releases:
- name: credhub-webui
version: "0.0.1"
sha1: "2b11b1985106a68effae0ec2550ec624cbd9e713"
url: "https://github.com/shreddedbacon/credhub-webui-boshrelease/releases/download/v0.0.1/credhub-webui-boshrelease-0.0.1.tgz"
version: "0.0.2"
sha1: "62dc76828407918fa60855a7b8af5153b4c27205"
url: "https://github.com/shreddedbacon/credhub-webui-boshrelease/releases/download/v0.0.2/credhub-webui-boshrelease-0.0.2.tgz"

stemcells:
- os: ubuntu-trusty
Expand All @@ -25,7 +25,10 @@ instance_groups:
- name: credhub-webui
release: credhub-webui
properties:
credhub_server: "https://192.168.50.6:8844"
credhub_server: "((credhub_server))"
ui_url: "https://((credhub_webui_hostname)):8443"
client_id: ((credhub_client_id))
client_secret: ((credhub_client__secret))
ssl:
certificate: ((credhub_webui_tls.certificate))
key: ((credhub_webui_tls.private_key))
Expand All @@ -35,7 +38,7 @@ variables:
type: certificate
options:
self_sign: true
common_name: credhub-webui.local
common_name: ((credhub_webui_hostname))
alternative_names: [localhost]

update:
Expand Down

0 comments on commit 4d6d065

Please sign in to comment.