forked from pivotal-cf/docs-pks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manage-deployments-bosh.html.md.erb
41 lines (32 loc) · 1.41 KB
/
manage-deployments-bosh.html.md.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
title: Managing PKS Deployments with BOSH
owner: PKS
---
<strong><%= modified_date %></strong>
This topic describes how to manage your Pivotal Container Service (PKS)
deployment using BOSH.
## <a id='alias'></a>Set a BOSH Environment Alias
To set a BOSH alias for your PKS deployment environment, follow the steps below:
1. Gather credential and IP address information for your BOSH Director and SSH
into the Ops Manager VM. See [Advanced Troubleshooting with the BOSH
CLI](https://docs.pivotal.io/pivotalcf/customizing/trouble-advanced.html) for
more information.
1. To create a BOSH alias for your PKS environment, run the following command:
<pre>bosh alias-env ENVIRONMENT \
-e BOSH-DIRECTOR-IP \
--ca-cert /var/tempest/workspaces/default/root_ca_certificate</pre>
Where:
* `ENVIRONMENT` is an alias of your choice. For example, `pks`.
* `BOSH-DIRECTOR-IP` is the BOSH Director IP address you located in the
first step. For example, `10.0.0.3`.
For example:
<pre class="terminal">$ bosh alias-env pks -e 10.0.0.3 \
--ca-cert /var/tempest/workspaces/default/root_ca_certificate</pre>
1. To log in to the BOSH Director using the alias you set, run `bosh -e
ENVIRONMENT login`.<br><br>For example:
<pre class="terminal">$ bosh -e pks login</pre>
## <a id='pks-api'></a>SSH into the PKS API VM
To SSH into the PKS API VM using BOSH, follow the steps below:
<ol>
<%= partial 'bosh-ssh' %>
</ol>