Skip to content

Commit db010fd

Browse files
authored
add ssh command (atlassian#242)
* add ssh command * fix typo * add non-root docker setup
1 parent ed5bd4b commit db010fd

File tree

3 files changed

+21
-6
lines changed

3 files changed

+21
-6
lines changed

docs/dc-apps-performance-toolkit-user-guide-bitbucket.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,13 @@ For simple spikes or tests, you can set up an execution environment on your loca
345345
If you're using the DC App Performance Toolkit to produce the required [performance and scale benchmarks for your Data Center app](https://developer.atlassian.com/platform/marketplace/dc-apps-performance-and-scale-testing/), we recommend that you set up your execution environment on AWS:
346346
347347
1. [Launch AWS EC2 instance](https://docs.aws.amazon.com/quickstarts/latest/vmlaunch/step-1-launch-instance.html). Instance type: [`c5.2xlarge`](https://aws.amazon.com/ec2/instance-types/c5/), OS: select from Quick Start `Ubuntu Server 18.04 LTS`.
348-
1. Connect to the instance using the [AWS Systems Manager Sessions Manager](https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager.html).
349-
1. Install [Docker](https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository).
348+
1. Connect to the instance using [SSH](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AccessingInstancesLinux.html) or the [AWS Systems Manager Sessions Manager](https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager.html).
349+
350+
```bash
351+
ssh -i path_to_pem_file ubuntu@INSTANCE_PUBLIC_IP
352+
```
353+
354+
1. Install [Docker](https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository). Setup manage Docker as a [non-root user](https://docs.docker.com/engine/install/linux-postinstall).
350355
1. Go to GitHub and create a fork of [dc-app-performance-toolkit](https://github.com/atlassian/dc-app-performance-toolkit).
351356
1. Clone the fork locally, then edit the `bitbucket.yml` configuration file and other files as needed.
352357
1. Push your changes to the forked repository.

docs/dc-apps-performance-toolkit-user-guide-confluence.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,8 +312,13 @@ For simple spikes or tests, you can set up an execution environment on your loca
312312
If you're using the DC App Performance Toolkit to produce the required [performance and scale benchmarks for your Data Center app](https://developer.atlassian.com/platform/marketplace/dc-apps-performance-and-scale-testing/), we recommend that you set up your execution environment on AWS:
313313
314314
1. [Launch AWS EC2 instance](https://docs.aws.amazon.com/quickstarts/latest/vmlaunch/step-1-launch-instance.html). Instance type: [`c5.2xlarge`](https://aws.amazon.com/ec2/instance-types/c5/), OS: select from Quick Start `Ubuntu Server 18.04 LTS`.
315-
1. Connect to the instance using the [AWS Systems Manager Sessions Manager](https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager.html).
316-
1. Install [Docker](https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository).
315+
1. Connect to the instance using [SSH](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AccessingInstancesLinux.html) or the [AWS Systems Manager Sessions Manager](https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager.html).
316+
317+
```bash
318+
ssh -i path_to_pem_file ubuntu@INSTANCE_PUBLIC_IP
319+
```
320+
321+
1. Install [Docker](https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository). Setup manage Docker as a [non-root user](https://docs.docker.com/engine/install/linux-postinstall).
317322
1. Go to GitHub and create a fork of [dc-app-performance-toolkit](https://github.com/atlassian/dc-app-performance-toolkit).
318323
1. Clone the fork locally, then edit the `confluence.yml` configuration file and other files as needed.
319324
1. Push your changes to the forked repository.

docs/dc-apps-performance-toolkit-user-guide-jira.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,13 @@ For simple spikes or tests, you can set up an execution environment on your loca
329329
If you're using the DC App Performance Toolkit to produce the required [performance and scale benchmarks for your Data Center app](https://developer.atlassian.com/platform/marketplace/dc-apps-performance-and-scale-testing/), we recommend that you set up your execution environment on AWS:
330330
331331
1. [Launch AWS EC2 instance](https://docs.aws.amazon.com/quickstarts/latest/vmlaunch/step-1-launch-instance.html). Instance type: [`c5.2xlarge`](https://aws.amazon.com/ec2/instance-types/c5/), OS: select from Quick Start `Ubuntu Server 18.04 LTS`.
332-
1. Connect to the instance using the [AWS Systems Manager Sessions Manager](https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager.html).
333-
1. Install [Docker](https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository).
332+
1. Connect to the instance using [SSH](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AccessingInstancesLinux.html) or the [AWS Systems Manager Sessions Manager](https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager.html).
333+
334+
```bash
335+
ssh -i path_to_pem_file ubuntu@INSTANCE_PUBLIC_IP
336+
```
337+
338+
1. Install [Docker](https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository). Setup manage Docker as a [non-root user](https://docs.docker.com/engine/install/linux-postinstall).
334339
1. Go to GitHub and create a fork of [dc-app-performance-toolkit](https://github.com/atlassian/dc-app-performance-toolkit).
335340
1. Clone the fork locally, then edit the `jira.yml` configuration file and other files as needed.
336341
1. Push your changes to the forked repository.

0 commit comments

Comments
 (0)