10 |
11 | {% if page.summary %}
12 |
{{page.summary}}
13 | {% endif %}
14 | {{ content }}
15 |
16 |
--------------------------------------------------------------------------------
/_sass/custom-algolia.scss:
--------------------------------------------------------------------------------
1 | #searchexpand {
2 | margin-top: 20px;
3 | position: absolute;
4 | right: 20px;
5 | background: lightgrey;
6 | text-align: center;
7 | height: 30px;
8 | box-shadow: 0px 0px 4px grey;
9 | }
10 | #algolia-docsearch {
11 | height: 30px;
12 | width: 0px;
13 | transition: width 200ms, background-color 200ms linear;
14 | background: none;
15 | border: none;
16 | border-radius: 3px;
17 | padding: 0;
18 | margin: 0;
19 | vertical-align: initial !important;
20 | outline-color: grey;
21 | text-indent: 5px;
22 | }
23 | #searchexpand i {
24 | width: 30px;
25 | height: 30px;
26 | padding-top: 7px;
27 | }
28 | i.fa-search {
29 | margin-right: -4px;
30 | }
31 | #searchexpand button {
32 | border: none;
33 | background: none;
34 | padding: 0;
35 | margin: 0;
36 | }
37 | .algolia-autocomplete {
38 | top: 0;
39 | margin: 0;
40 | padding: 0;
41 | }
42 | @media (min-width: 1024px) {
43 | #searchexpand .navbar-toggle {
44 | display: none !important;
45 | }
46 | }
47 |
48 | #algolia-autocomplete-listbox-0 {
49 | right: 0 !important;
50 | left: auto !important;
51 | }
--------------------------------------------------------------------------------
/_sass/font-awesome/_animated.scss:
--------------------------------------------------------------------------------
1 | // Spinning Icons
2 | // --------------------------
3 |
4 | .#{$fa-css-prefix}-spin {
5 | -webkit-animation: fa-spin 2s infinite linear;
6 | animation: fa-spin 2s infinite linear;
7 | }
8 |
9 | .#{$fa-css-prefix}-pulse {
10 | -webkit-animation: fa-spin 1s infinite steps(8);
11 | animation: fa-spin 1s infinite steps(8);
12 | }
13 |
14 | @-webkit-keyframes fa-spin {
15 | 0% {
16 | -webkit-transform: rotate(0deg);
17 | transform: rotate(0deg);
18 | }
19 | 100% {
20 | -webkit-transform: rotate(359deg);
21 | transform: rotate(359deg);
22 | }
23 | }
24 |
25 | @keyframes fa-spin {
26 | 0% {
27 | -webkit-transform: rotate(0deg);
28 | transform: rotate(0deg);
29 | }
30 | 100% {
31 | -webkit-transform: rotate(359deg);
32 | transform: rotate(359deg);
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/_sass/font-awesome/_bordered-pulled.scss:
--------------------------------------------------------------------------------
1 | // Bordered & Pulled
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-border {
5 | padding: .2em .25em .15em;
6 | border: solid .08em $fa-border-color;
7 | border-radius: .1em;
8 | }
9 |
10 | .#{$fa-css-prefix}-pull-left { float: left; }
11 | .#{$fa-css-prefix}-pull-right { float: right; }
12 |
13 | .#{$fa-css-prefix} {
14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
16 | }
17 |
18 | /* Deprecated as of 4.4.0 */
19 | .pull-right { float: right; }
20 | .pull-left { float: left; }
21 |
22 | .#{$fa-css-prefix} {
23 | &.pull-left { margin-right: .3em; }
24 | &.pull-right { margin-left: .3em; }
25 | }
26 |
--------------------------------------------------------------------------------
/_sass/font-awesome/_core.scss:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/_sass/font-awesome/_fixed-width.scss:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .#{$fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/_sass/font-awesome/_larger.scss:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .#{$fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .#{$fa-css-prefix}-2x { font-size: 2em; }
11 | .#{$fa-css-prefix}-3x { font-size: 3em; }
12 | .#{$fa-css-prefix}-4x { font-size: 4em; }
13 | .#{$fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/_sass/font-awesome/_list.scss:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: $fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .#{$fa-css-prefix}-li {
11 | position: absolute;
12 | left: -$fa-li-width;
13 | width: $fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.#{$fa-css-prefix}-lg {
17 | left: -$fa-li-width + (4em / 14);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/_sass/font-awesome/_path.scss:
--------------------------------------------------------------------------------
1 | /* FONT PATH
2 | * -------------------------- */
3 |
4 | @font-face {
5 | font-family: 'FontAwesome';
6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}');
7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'),
9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'),
10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
13 | font-weight: normal;
14 | font-style: normal;
15 | }
16 |
--------------------------------------------------------------------------------
/_sass/font-awesome/_rotated-flipped.scss:
--------------------------------------------------------------------------------
1 | // Rotated & Flipped Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
7 |
8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
10 |
11 | // Hook for IE8-9
12 | // -------------------------
13 |
14 | :root .#{$fa-css-prefix}-rotate-90,
15 | :root .#{$fa-css-prefix}-rotate-180,
16 | :root .#{$fa-css-prefix}-rotate-270,
17 | :root .#{$fa-css-prefix}-flip-horizontal,
18 | :root .#{$fa-css-prefix}-flip-vertical {
19 | filter: none;
20 | }
21 |
--------------------------------------------------------------------------------
/_sass/font-awesome/_screen-reader.scss:
--------------------------------------------------------------------------------
1 | // Screen Readers
2 | // -------------------------
3 |
4 | .sr-only { @include sr-only(); }
5 | .sr-only-focusable { @include sr-only-focusable(); }
6 |
--------------------------------------------------------------------------------
/_sass/font-awesome/_stacked.scss:
--------------------------------------------------------------------------------
1 | // Stacked Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-stack {
5 | position: relative;
6 | display: inline-block;
7 | width: 2em;
8 | height: 2em;
9 | line-height: 2em;
10 | vertical-align: middle;
11 | }
12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
13 | position: absolute;
14 | left: 0;
15 | width: 100%;
16 | text-align: center;
17 | }
18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; }
21 |
--------------------------------------------------------------------------------
/_sass/font-awesome/font-awesome.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "variables";
7 | @import "mixins";
8 | @import "path";
9 | @import "core";
10 | @import "larger";
11 | @import "fixed-width";
12 | @import "list";
13 | @import "bordered-pulled";
14 | @import "animated";
15 | @import "rotated-flipped";
16 | @import "stacked";
17 | @import "icons";
18 | @import "screen-reader";
19 |
--------------------------------------------------------------------------------
/_sass/marketing-footer.scss:
--------------------------------------------------------------------------------
1 | #marketing-footer {
2 | a:after {
3 | content: '';
4 | }
5 |
6 | &>footer{
7 | margin-bottom: 0 !important;
8 | }
9 |
10 | input {
11 | line-height: 20px !important;
12 | }
13 | }
--------------------------------------------------------------------------------
/_sass/marketing-nav.scss:
--------------------------------------------------------------------------------
1 | #marketing-nav{
2 | a {
3 | cursor: pointer;
4 | }
5 |
6 | font-family: 'Libre Franklin', sans-serif;
7 |
8 | #searchform {
9 | display: none;
10 | }
11 |
12 | #top-nav {
13 | max-height: none;
14 | }
15 |
16 | input {
17 | margin-top: 9px;
18 | }
19 |
20 | #top-nav li{
21 |
22 |
23 | &>a {
24 | clear: both;
25 | background-color: transparent !important;
26 | text-transform: capitalize;
27 | border: none;
28 | transition: all 0.5s ease;
29 | }
30 |
31 | &.open {
32 | &>a {
33 | color: #ddd;
34 | }
35 | &>ul {
36 | display: block !important;
37 | }
38 | }
39 | }
40 |
41 | a[href^="http://"]:after, a[href^="https://"]:after {
42 | content: none;
43 | }
44 |
45 | hr {
46 | margin: 0 25% !important;
47 | width: 50%;
48 | }
49 |
50 | :last-child:after {
51 | border-bottom: none !important;
52 | }
53 |
54 | .navbar-toggle {
55 | background: none !important;
56 | }
57 |
58 | .mobile-close {
59 | font-size: 1.5em !important;
60 | }
61 |
62 | #menu-item-2006 a {
63 | border-bottom: 2px solid #f36621 !important;
64 | }
65 | }
--------------------------------------------------------------------------------
/application-solutions.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: "Application Solutions"
4 | keywords: portworx, application, database, solutions, scale capacity, snapshot volume, create clone, SAN
5 | sidebar: home_sidebar
6 | meta-description: "Explore examples that illustrate managing data volumes for stateful containerized applications using Portworx. Try today!"
7 | ---
8 |
9 | PX-Developer lets you scale capacity, snapshot volumes, create clones, and perform other SAN features using commodity hardware. The following examples illustrate managing data volumes with stateful databases and applications.
10 |
11 | * [Manage MySQL Database Volumes with PX-Developer](/applications/mysql.html)
12 | * [Scale a Cassandra Database with PX-Developer](/applications/cassandra.html)
13 | * [Run the Docker Registry with High Availability](/applications/docker-registry.html)
14 | * [Run Redis with PX-Developer](/applications/redis.html)
15 | * [Create Portworx-based Volume Stacks with Docker Compose](/applications/docker-compose.html)
16 | * [Run PostgresSQL from CrunchyData on PX Volumes](https://github.com/CrunchyData/crunchy-containers/tree/810d41b055e14148bac9f7977a84febbf37cec1a/examples/portworx)
17 |
--------------------------------------------------------------------------------
/applications/cassandra-snaps.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: "Taking Consistent Cassandra Snapshots"
4 | keywords: portworx, px-developer, cassandra, database, cluster, storage, snapshots, snaps, backup
5 | sidebar: home_sidebar
6 | meta-description: "Learn how to maintain consistent snapshots for Cassandra with Portworx by flushing data."
7 | ---
8 |
9 | * TOC
10 | {:toc}
11 |
12 | ## Managing Snapshots
13 | Cassandra snapshots first flush application memory, then create a hardlink to the `SSTable` files. This means that the snaps are application consistent (mem is flushed) but the snap data itself is still within the volume, so if something were to happen to the underlying volume, you still have a corrupted volume and can't properly roll back. So these snaps are useful to going back to a point in time
14 |
15 | PX snaps create a real usable volume which is distinct and separate from the volume cassandra is currently using. That means you can can standup a parallel second instance of cassandra from that volume and so on. However it is crash consistent (cassandra's memory is not flushed)
16 |
17 | ### Best Practice
18 | nodetool flush and then px snapshot
19 |
--------------------------------------------------------------------------------
/applications/couchdb-pic-001.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/applications/couchdb-pic-001.PNG
--------------------------------------------------------------------------------
/applications/couchdb-pic-002.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/applications/couchdb-pic-002.PNG
--------------------------------------------------------------------------------
/build/deploy-amp.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
4 | BASE="${DIR}/.."
5 |
6 | if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_BRANCH" == "gh-pages" ]; then
7 | cd "${BASE}/_site"
8 |
9 | echo "amp-docs.portworx.com" > CNAME
10 | touch .nojekyll
11 |
12 | git init
13 |
14 | git config --global user.email "no-reply@portworx.com"
15 | git config --global user.name "Build Slave"
16 |
17 | git add .
18 | git commit -am 'AMP generated site'
19 |
20 | echo -n ${RSAKEY} | base64 -d > ${BASE}/deploy_key
21 | echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
22 | chmod 0600 ${BASE}/deploy_key
23 |
24 | eval `ssh-agent -s`
25 | ssh-add ${BASE}/deploy_key
26 |
27 | git push git@github.com:portworx/px-docs-amp.git master --force
28 |
29 | fi
30 |
--------------------------------------------------------------------------------
/build/marketing-blocks.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
4 | BASE="${DIR}/.."
5 | WEBIP='portworx.com'
6 |
7 | WEBSITECONTENT=$(wget -qO- --no-check-certificate --header="Host: portworx.com" https://${WEBIP}/)
8 |
9 | TOPNAV=$(echo ${WEBSITECONTENT} | pup 'nav')
10 | FOOTER=$(echo ${WEBSITECONTENT} | pup 'footer')
11 |
12 | echo ${TOPNAV} > "${BASE}/_includes/topnav.html"
13 | echo ${FOOTER} > "${BASE}/_includes/footer.html"
14 |
15 | CSS=$(wget -qO "${BASE}/_sass/marketing-styles.scss" --no-check-certificate --header="Host: portworx.com" https://${WEBIP}/wp-content/themes/portworx/css/master.css)
16 |
17 | gsed -ir 's/@charset "UTF-8";//' "${BASE}/_sass/marketing-styles.scss"
18 |
--------------------------------------------------------------------------------
/build/test-google.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | # This is the CI script part of the Google link checking
3 | # the links need to exist at https://portworx.com/.doclink-cache.json
4 | # Check the cron script at `update-googlelinks.sh`
5 |
6 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
7 | BASE="${DIR}/.."
8 | CACHEPATH="${BASE}/.doclink-cache.json"
9 |
10 | HTTPDOMAIN="http://${DOMAIN}"
11 | HTTPSDOMAIN="https://${DOMAIN}"
12 |
13 | curl --silent -o ${CACHEPATH} https://portworx.com/.doclink-cache.json
14 |
15 | echo "Testing pages exist locally"
16 | FAIL=0
17 | for ADDRESS in $(cat "${CACHEPATH}" | jq -r .links[]); do
18 | if [ ! -f "${BASE}/_site${ADDRESS}" ]; then
19 | echo "ERROR: Google result ${ADDRESS} does not exist"
20 | FAIL=1
21 | fi
22 | done
23 |
24 | if [[ ${FAIL} -eq 1 ]]; then
25 | echo "Fail! One or more Google results do not exist"
26 | exit 1
27 | else
28 | echo "Pass: Google link check successful"
29 | fi
30 |
--------------------------------------------------------------------------------
/cloud/aws/eks.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: "Dynamic Provisioning on Amazon Elastic Container Service for Kubernetes (Amazon EKS)"
4 | keywords: Amazon, portworx, container, Kubernetes, storage, Docker, k8s, pv, persistent disk, eks
5 | sidebar: home_sidebar
6 | ---
7 |
8 | * TOC
9 | {:toc}
10 |
11 |
12 | ## Create a EKS cluster
13 |
14 | Visit [the Amazon EKS page](https://aws.amazon.com/eks/) for details on signing up and install instructions.
15 |
16 | The steps below will help you enable dynamic provisioning of Portworx volumes in your Amazon Elastic Container Service for Kubernetes (Amazon EKS) cluster.
17 |
18 | ## Disk template
19 | Portworx takes in a disk spec which gets used to provision AWS persistent disks dynamically.
20 |
21 | {% include asg/k8s-asg.md env-addendum="Note: For the EKS clusters, select the EKS checkbox option when you create the Portworx spec." skip12="true" skip13="true" %}
22 |
--------------------------------------------------------------------------------
/cloud/aws/kops-asg.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: "Run Portworx with Kubernetes Operations(KOPS)"
4 | keywords: portworx, container, Kubernetes, storage, Docker, k8s, KOPS, pv, persistent disk, aws, EBS
5 | sidebar: home_sidebar
6 | redirect_from: "/cloud/aws/kops_asg.html"
7 | meta-description: "This page describes how to setup a production ready Portworx cluster with Kubernetes KOPS."
8 | ---
9 |
10 | * TOC
11 | {:toc}
12 |
13 | This is a guide to setup a production ready Portworx cluster using Kubernetes (KOPS+AWS) environment that allows you to dynamically provision persistent volumes. KOPS helps you create, destroy, upgrade and maintain production-grade, highly available, Kubernetes clusters. Under the hood KOPS uses AWS Autoscaling groups (ASG) to spin up EC2 instances.
14 |
15 | {% include asg/k8s-asg.md %}
--------------------------------------------------------------------------------
/cloud/migration.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: "Cloud Migration"
4 | keywords: cloud, backup, restore, snapshot, DR, migration
5 | ---
6 |
7 | * TOC
8 | {:toc}
9 |
10 | ## Overview
11 | The CloudMigration feature can be used to migrate Portworx volumes between clusters. This requires first pairing up two
12 | clusters and then starting migration between the two clusters.
13 |
14 | The pairing is uni-directional i.e. if you pair Cluster C1 with C2 you can only migrate volumes from C1 to C2.
15 |
16 | Cluster Pairing and Migration can be triggered in two ways:
17 |
18 | * [Using stork](migration-stork.html). This can be used to migrate volumes as well as Kubernetes resources.
19 | * [Using pxctl](migration-pxctl.html). This can be used to migrate only volumes between two Portworx clusters.
20 |
21 |
--------------------------------------------------------------------------------
/control/asg-clouddrive.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: "CLI Reference"
4 | keywords: portworx, pxctl, command-line tool, cli, reference
5 | sidebar: home_sidebar
6 | redirect_from: "/cli-reference.html"
7 | ---
8 |
9 | * TOC
10 | {:toc}
11 |
12 | ### CloudDrive operations
13 |
14 | Portworx when running in ASG mode provides a set of CLI commands to display the information about all EBS volumes
15 | and their attachment information.
16 |
17 | #### Cloud Drive Help
18 | ```
19 | # /opt/pwx/bin/pxctl clouddrive --help
20 | NAME:
21 | pxctl clouddrive - Manage cloud drives
22 |
23 | USAGE:
24 | pxctl clouddrive command [command options] [arguments...]
25 |
26 | COMMANDS:
27 | list, l List all the cloud drives currently being used
28 | inspect, i Inspect and view all the drives of a DriveSet
29 |
30 | OPTIONS:
31 | --help, -h show help
32 | ```
33 |
34 | {% include asg/cli.md list="# /opt/pwx/bin/pxctl clouddrive list" inspect="# /opt/pwx/bin/pxctl clouddrive inspect --nodeid ip-172-20-53-168.ec2.internal" %}
35 |
--------------------------------------------------------------------------------
/control/groupsnap.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: "GroupSnapshots"
4 | keywords: portworx, pxctl, command-line tool, cli, reference
5 | sidebar: home_sidebar
6 | redirect_from: "/cli-reference.html"
7 | meta-description: "Explore the CLI reference guide for taking group snapshots of container data volumes using Portworx. Try it today!"
8 | ---
9 |
10 | * TOC
11 | {:toc}
12 |
13 | ### Group Snapshot Operations
14 | ```
15 | /opt/pwx/bin/pxctl volume snapshot group -h
16 | NAME:
17 | pxctl volume snapshot group - Create group snapshots for given group id or labels
18 | USAGE:
19 | pxctl volume snapshot group [command options] [arguments...]
20 | OPTIONS:
21 | --group value, -g value group id
22 | --label pairs, -l pairs list of comma-separated name=value pairs
23 | ```
24 |
25 |
26 | Take snapshot for volumes with label “v1=x1”:
27 |
28 | ```
29 | /opt/pwx/bin/pxctl volume snapshot group --label v1=x1
30 | Volume 549285969696152595 : Snapshot 1026872711217134654
31 | Volume 952350606466932557 : Snapshot 218459942880193319
32 | ```
33 |
34 | Take snapshot for volumes created with group “group1”
35 |
36 | ```
37 | /opt/pwx/bin/pxctl volume snapshot group --group “group1”
38 | Volume 273677465608441312 : Snapshot 609476927441905746
39 | ```
40 |
--------------------------------------------------------------------------------
/control/rest-api.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: "REST API Reference"
4 | keywords: portworx, REST, API
5 | sidebar: home_sidebar
6 | redirect_from: "/rest_api.html"
7 | meta-description: "Portworx data services can be managed and monitored through RESTful APIs. View REST API Reference and documentation from Portworx today!"
8 | ---
9 |
10 | Portworx data services can be managed and monitored through RESTful API's.
11 |
12 | The Portworx REST APIs are available at Port 9001 on the management IP interface of any of the nodes in a Portworx Cluster.
13 |
14 | The API documentation can be accessed at the following link.
15 |
16 | [Portworx Openstorage API](http://api.openstorage.org/openstorage/index.html)
17 |
18 |
--------------------------------------------------------------------------------
/control/snap-1.3.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: "CLI Reference–Snapshots-1.3"
4 | keywords: portworx, pxctl, command-line tool, cli, reference
5 | sidebar: home_sidebar
6 | redirect_from: "/cli-reference.html"
7 | meta-description: "Explore the CLI reference guide for taking snapshots of container data volumes using Portworx. Try it today!"
8 | ---
9 |
10 | * TOC
11 | {:toc}
12 |
13 | ### Snapshot Operations
14 |
15 | {% include pxctl/volume/volume-snap-help-1.3.md %}
16 |
17 | #### pxctl volume snaphot create
18 |
19 | {% include pxctl/volume/volume-snap-create-1.3.md %}
20 |
21 | #### pxctl volume list
22 |
23 | {% include pxctl/volume/volume-snap-list-1.3.md %}
24 |
25 | #### pxctl volume delete
26 |
27 | {% include pxctl/volume/volume-snap-delete-1.3.md %}
28 |
--------------------------------------------------------------------------------
/control/snap.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: "CLI Reference–Snapshots"
4 | keywords: portworx, pxctl, command-line tool, cli, reference
5 | sidebar: home_sidebar
6 | redirect_from: "/cli-reference.html"
7 | meta-description: "Explore the CLI reference guide for taking snapshots of container data volumes using Portworx. Try it today!"
8 | ---
9 |
10 | * TOC
11 | {:toc}
12 |
13 | #### PX version 1.2
14 | To know Portworx snapshots CLI Reference, see [Snapshot 1.2](/control/snap-1.2.html).
15 |
16 | #### PX version 1.3 and higher
17 | To know Portworx snapshots CLI Reference, see [Snapshot 1.3](/control/snap-1.3.html).
18 |
--------------------------------------------------------------------------------
/css/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/css/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/css/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/css/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/css/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/css/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/css/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/css/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/css/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/css/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/enterprise/cluster-alerting.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: "Cluster Alerting Preferences"
4 | keywords: lighthouse
5 | sidebar: home_sidebar
6 | redirect_from: "/Lighthouse-Manage-Clusters.html"
7 | meta-description: "To setup your Lighthouse cluster alert settings, use these four simple steps. See for yourself and get customizing!"
8 | ---
9 |
10 | You can setup alerting preferences for your cluster as the following.
11 |
12 | * Go to Manage clusters page
13 | * Here you should be able to see list of your clusters. For a particular cluster, where you want to make changes, select gear icon next to it
14 | * On this page you can enable email alerts, and make selections for critical alerts, warning alerts etc. It can also be integrated with syslog server
15 | * Click Save
16 |
17 | {:width="795px" height="666px"}
18 |
--------------------------------------------------------------------------------
/enterprise/group-snapshots.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: "Grouped Snapshots"
4 | keywords: lighthouse
5 | sidebar: home_sidebar
6 | meta-description: "Want to snapshot multiple volumes based on a label? Now you can. See for yourself and start snapping!"
7 | ---
8 |
9 | ### Snapshot collection of labels
10 |
11 | ### Click the icon on the top right
12 |
13 | {:width="24px" height="21px"}
14 |
15 | ### Lighthouse will now give you the options to pick labels to snapshot.
16 |
17 | {:width="800px" height="600px"}
18 |
19 | ### Filter down the list by searching and adding a label.
20 |
21 | {:width="800px" height="600px"}
22 |
23 | ### You can add multiple filters to filter down further.
24 |
25 | {:width="800" height="300px"}
26 |
27 | ### Once you are happy with the selection click
28 |
29 | {:width="50px" height="40px"}
30 |
--------------------------------------------------------------------------------
/enterprise/lighthouse-filters.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: "Lighthouse filters"
4 | keywords: lighthouse
5 | sidebar: home_sidebar
6 | meta-description: "Filter nodes, volumes, containers through the search box."
7 | ---
8 |
9 | ### Choose a filter
10 |
11 | {:width="1796px" height="600px"}
12 |
13 | ### Filter by text
14 |
15 | Once you have chosen a particular filter just start typing and the list will filter based on that.
16 |
17 | {:width="1796px" height="600px"}
18 |
--------------------------------------------------------------------------------
/enterprise/lighthouse-snapshots.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: "Lighthouse volume snapshots"
4 | keywords: lighthouse
5 | sidebar: home_sidebar
6 | meta-description: "Volume snaphots from lighthouse."
7 | ---
8 |
9 | ### Choose a volume
10 |
11 | {:width="600px" height="600px"}
12 |
13 | Once you have chosen a particular volume, the right bar will populate with volume info.
14 |
15 | ### Snaphot the volume
16 |
17 | Click {:width="24px" height="21px"} on the right bar. This will bring up the snapshot dialog.
18 |
19 | ### Local snapshot
20 |
21 | {:width="1796px" height="600px"}
22 |
23 | ### Cloudsnap shot
24 |
25 | When you want to snapshot to a cloud select cloud and a credential.
26 |
27 | {:width="1796px" height="600px"}
28 |
29 | {:width="1796px" height="600px"}
30 |
--------------------------------------------------------------------------------
/enterprise/lighthouse-volume-update.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: "Lighthouse Volume Update"
4 | keywords: lighthouse
5 | sidebar: home_sidebar
6 | meta-description: "Update volume replication."
7 | ---
8 |
9 | This page helps edit the volume parameters.
10 |
11 | ### Select a Volume
12 |
13 |
14 | Select the volume and click {:width="26px" height="21px"} on the volume details right hand pane.
15 |
16 | {:width="1796px" height="600px"}
17 |
18 | ### Update the Volume Replication
19 |
20 | Update the replication factor on the pop up that says "Edit Volume"
21 |
22 | ***NOTE:*** The maximum replication factor supported is 3 and it is incremented or decremented sequentially. i.e. if current replication factor is 2, then the available options are 1 or 3. [assuming that the portworx cluster is of atleast 3 nodes]
23 |
24 | {:width="1796px" height="600px"}
25 |
--------------------------------------------------------------------------------
/etcd/ansible/etcd3.service.js:
--------------------------------------------------------------------------------
1 | [Unit]
2 | Description=etcd
3 | Documentation=https://github.com/coreos/etcd
4 | Conflicts=etcd.service
5 | Conflicts=etcd2.service
6 |
7 | [Service]
8 | Type=notify
9 | Restart=always
10 | RestartSec=5s
11 | LimitNOFILE=40000
12 | TimeoutStartSec=0
13 |
14 | ExecStart=/usr/local/bin/etcd --name etcd-{{ hostvars[inventory_hostname]['inventory_hostname'] }} \
15 | --data-dir /var/lib/etcd \
16 | --quota-backend-bytes 8589934592 \
17 | --auto-compaction-retention 3 \
18 | --listen-client-urls http://{{ hostvars[inventory_hostname]['IP'] }}:2379 \
19 | --advertise-client-urls http://{{ hostvars[inventory_hostname]['IP'] }}:2379 \
20 | --listen-peer-urls http://{{ hostvars[inventory_hostname]['IP'] }}:2380 \
21 | --initial-advertise-peer-urls http://{{ hostvars[inventory_hostname]['IP'] }}:2380 \
22 | --initial-cluster \
23 | {% for host in members %}etcd-{{ hostvars[host].inventory_hostname}}=http://{{ hostvars[host].IP}}:2380{{ '' if loop.last else ','}}{% endfor %}
24 | --initial-cluster-token my-etcd-token \
25 | --initial-cluster-state new
26 |
27 | [Install]
28 | WantedBy=multi-user.target
29 |
30 |
31 |
--------------------------------------------------------------------------------
/etcd/ansible/inv.yml:
--------------------------------------------------------------------------------
1 | [nodes]
2 | server1 IP=192.168.205.10
3 | server2 IP=192.168.205.11
4 | server3 IP=192.168.205.12
5 |
--------------------------------------------------------------------------------
/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/fonts/LibreFranklin-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/fonts/LibreFranklin-Regular.woff2
--------------------------------------------------------------------------------
/fonts/MaterialIcons-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/fonts/MaterialIcons-Regular.woff2
--------------------------------------------------------------------------------
/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/images/Cassandra-PX Read Latencies.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/Cassandra-PX Read Latencies.png
--------------------------------------------------------------------------------
/images/Cassandra-PX Read OPS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/Cassandra-PX Read OPS.png
--------------------------------------------------------------------------------
/images/Cassandra-PX Write Ops.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/Cassandra-PX Write Ops.png
--------------------------------------------------------------------------------
/images/Cassandra-PX Write latencies.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/Cassandra-PX Write latencies.png
--------------------------------------------------------------------------------
/images/Cluster-Alerting-Preferences.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/Cluster-Alerting-Preferences.png
--------------------------------------------------------------------------------
/images/LH-add-a-new-user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/LH-add-a-new-user.png
--------------------------------------------------------------------------------
/images/LH-group-details.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/LH-group-details.png
--------------------------------------------------------------------------------
/images/Nomad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/Nomad.png
--------------------------------------------------------------------------------
/images/Portworx-Lighthouse-Screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/Portworx-Lighthouse-Screenshot.png
--------------------------------------------------------------------------------
/images/Portworx-Logo-u30-w86.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/Portworx-Logo-u30-w86.png
--------------------------------------------------------------------------------
/images/alerts-date-filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/alerts-date-filter.png
--------------------------------------------------------------------------------
/images/aws-ecs-image00.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-image00.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-image01.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-image01.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-image02.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-image02.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-image03.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-image03.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_001y.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_001y.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_002y.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_002y.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_003t.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_003t.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_003xx.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_003xx.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_003y.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_003y.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_003yy.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_003yy.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_003z.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_003z.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_004yy.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_004yy.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_005y.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_005y.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_005yy.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_005yy.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_005yyx.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_005yyx.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_006y.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_006y.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_006yx.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_006yx.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_006z.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_006z.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_007y.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_007y.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_008y.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_008y.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_009y.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_009y.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_010y.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_010y.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_011y.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_011y.PNG
--------------------------------------------------------------------------------
/images/aws-ecs-setup_withPX_012y.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/aws-ecs-setup_withPX_012y.PNG
--------------------------------------------------------------------------------
/images/azure-add-disk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/azure-add-disk.png
--------------------------------------------------------------------------------
/images/azure-cluster-on-lighthouse-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/azure-cluster-on-lighthouse-updated.png
--------------------------------------------------------------------------------
/images/azure-cluster-on-lighthouse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/azure-cluster-on-lighthouse.png
--------------------------------------------------------------------------------
/images/azure-inbound-security-rules.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/azure-inbound-security-rules.png
--------------------------------------------------------------------------------
/images/azure-pxctl-status.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/azure-pxctl-status.png
--------------------------------------------------------------------------------
/images/block-storage-on-packet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/block-storage-on-packet.png
--------------------------------------------------------------------------------
/images/bootstrap-script-with-existing-server-profile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/bootstrap-script-with-existing-server-profile.png
--------------------------------------------------------------------------------
/images/building-a-graph-with-prometheus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/building-a-graph-with-prometheus.png
--------------------------------------------------------------------------------
/images/cf_px.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/cf_px.png
--------------------------------------------------------------------------------
/images/cluster-architecture-example-mysql.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/cluster-architecture-example-mysql.png
--------------------------------------------------------------------------------
/images/cluster-architecture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/cluster-architecture.png
--------------------------------------------------------------------------------
/images/cluster-list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/cluster-list.png
--------------------------------------------------------------------------------
/images/clusters-add-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/clusters-add-updated.png
--------------------------------------------------------------------------------
/images/clusters-add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/clusters-add.png
--------------------------------------------------------------------------------
/images/clusters-list-updated-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/clusters-list-updated-2.png
--------------------------------------------------------------------------------
/images/clusters-list-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/clusters-list-updated.png
--------------------------------------------------------------------------------
/images/clusters-manage-clusters-menu-updated-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/clusters-manage-clusters-menu-updated-2.png
--------------------------------------------------------------------------------
/images/clusters-manage-clusters-menu-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/clusters-manage-clusters-menu-updated.png
--------------------------------------------------------------------------------
/images/clusters-manage-clusters-menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/clusters-manage-clusters-menu.png
--------------------------------------------------------------------------------
/images/clusters-new-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/clusters-new-updated.png
--------------------------------------------------------------------------------
/images/clusters-new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/clusters-new.png
--------------------------------------------------------------------------------
/images/clusters.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/clusters.png
--------------------------------------------------------------------------------
/images/company_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/company_logo.png
--------------------------------------------------------------------------------
/images/configure-volume-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/configure-volume-updated.png
--------------------------------------------------------------------------------
/images/configure-volume.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/configure-volume.png
--------------------------------------------------------------------------------
/images/constraints.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/constraints.png
--------------------------------------------------------------------------------
/images/cos-random.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/cos-random.png
--------------------------------------------------------------------------------
/images/cos-seq.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/cos-seq.png
--------------------------------------------------------------------------------
/images/cos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/cos.png
--------------------------------------------------------------------------------
/images/curl-request-on-9001.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/curl-request-on-9001.png
--------------------------------------------------------------------------------
/images/data-network-interface-selection-menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/data-network-interface-selection-menu.png
--------------------------------------------------------------------------------
/images/datasource-creation-grafana.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/datasource-creation-grafana.png
--------------------------------------------------------------------------------
/images/dcos-cassandra-px-finished-install.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-cassandra-px-finished-install.png
--------------------------------------------------------------------------------
/images/dcos-cassandra-px-install-options.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-cassandra-px-install-options.png
--------------------------------------------------------------------------------
/images/dcos-cassandra-px-service.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-cassandra-px-service.png
--------------------------------------------------------------------------------
/images/dcos-cassandra-px-started-install.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-cassandra-px-started-install.png
--------------------------------------------------------------------------------
/images/dcos-cassandra-px-universe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-cassandra-px-universe.png
--------------------------------------------------------------------------------
/images/dcos-cassandra-px-volume-list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-cassandra-px-volume-list.png
--------------------------------------------------------------------------------
/images/dcos-hadoop-px-finished-install.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-hadoop-px-finished-install.png
--------------------------------------------------------------------------------
/images/dcos-hadoop-px-install-options.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-hadoop-px-install-options.png
--------------------------------------------------------------------------------
/images/dcos-hadoop-px-service.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-hadoop-px-service.png
--------------------------------------------------------------------------------
/images/dcos-hadoop-px-started-install.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-hadoop-px-started-install.png
--------------------------------------------------------------------------------
/images/dcos-hadoop-px-universe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-hadoop-px-universe.png
--------------------------------------------------------------------------------
/images/dcos-hadoop-px-volume-list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-hadoop-px-volume-list.png
--------------------------------------------------------------------------------
/images/dcos-kafka-px-finished-install.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-kafka-px-finished-install.png
--------------------------------------------------------------------------------
/images/dcos-kafka-px-install-options.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-kafka-px-install-options.png
--------------------------------------------------------------------------------
/images/dcos-kafka-px-service.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-kafka-px-service.png
--------------------------------------------------------------------------------
/images/dcos-kafka-px-started-install.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-kafka-px-started-install.png
--------------------------------------------------------------------------------
/images/dcos-kafka-px-universe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-kafka-px-universe.png
--------------------------------------------------------------------------------
/images/dcos-kafka-px-volume-list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-kafka-px-volume-list.png
--------------------------------------------------------------------------------
/images/dcos-portworx-couchdb-finished-install.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-portworx-couchdb-finished-install.png
--------------------------------------------------------------------------------
/images/dcos-portworx-couchdb-install-options.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-portworx-couchdb-install-options.png
--------------------------------------------------------------------------------
/images/dcos-portworx-couchdb-service.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-portworx-couchdb-service.png
--------------------------------------------------------------------------------
/images/dcos-portworx-couchdb-started-install.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-portworx-couchdb-started-install.png
--------------------------------------------------------------------------------
/images/dcos-portworx-couchdb-universe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-portworx-couchdb-universe.png
--------------------------------------------------------------------------------
/images/dcos-portworx-couchdb-volume-list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-portworx-couchdb-volume-list.png
--------------------------------------------------------------------------------
/images/dcos-portworx-secrets-setup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-portworx-secrets-setup.png
--------------------------------------------------------------------------------
/images/dcos-portworx-zookeeper-finished-install.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-portworx-zookeeper-finished-install.png
--------------------------------------------------------------------------------
/images/dcos-portworx-zookeeper-install-options.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-portworx-zookeeper-install-options.png
--------------------------------------------------------------------------------
/images/dcos-portworx-zookeeper-service.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-portworx-zookeeper-service.png
--------------------------------------------------------------------------------
/images/dcos-portworx-zookeeper-started-install.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-portworx-zookeeper-started-install.png
--------------------------------------------------------------------------------
/images/dcos-portworx-zookeeper-universe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-portworx-zookeeper-universe.png
--------------------------------------------------------------------------------
/images/dcos-portworx-zookeeper-volume-list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-portworx-zookeeper-volume-list.png
--------------------------------------------------------------------------------
/images/dcos-px-components.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-px-components.png
--------------------------------------------------------------------------------
/images/dcos-px-etcd-options.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-px-etcd-options.png
--------------------------------------------------------------------------------
/images/dcos-px-image-option.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-px-image-option.png
--------------------------------------------------------------------------------
/images/dcos-px-image-option2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-px-image-option2.png
--------------------------------------------------------------------------------
/images/dcos-px-install-finished.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-px-install-finished.png
--------------------------------------------------------------------------------
/images/dcos-px-install-options.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-px-install-options.png
--------------------------------------------------------------------------------
/images/dcos-px-lighthose-options.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-px-lighthose-options.png
--------------------------------------------------------------------------------
/images/dcos-px-lighthouse-dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-px-lighthouse-dashboard.png
--------------------------------------------------------------------------------
/images/dcos-px-lighthouse-login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-px-lighthouse-login.png
--------------------------------------------------------------------------------
/images/dcos-px-lighthouse-options.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-px-lighthouse-options.png
--------------------------------------------------------------------------------
/images/dcos-px-scale-up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-px-scale-up.png
--------------------------------------------------------------------------------
/images/dcos-px-universe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/dcos-px-universe.png
--------------------------------------------------------------------------------
/images/docker-run-px-enterprise.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/docker-run-px-enterprise.png
--------------------------------------------------------------------------------
/images/easy_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/easy_button.png
--------------------------------------------------------------------------------
/images/easy_button_favicon-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/easy_button_favicon-96x96.png
--------------------------------------------------------------------------------
/images/eb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/eb.png
--------------------------------------------------------------------------------
/images/ecs-clust-create.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/ecs-clust-create.png
--------------------------------------------------------------------------------
/images/ecs-instances.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/ecs-instances.png
--------------------------------------------------------------------------------
/images/ecs-task.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/ecs-task.png
--------------------------------------------------------------------------------
/images/edit-volume.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/edit-volume.png
--------------------------------------------------------------------------------
/images/elasticsearch-px-universe-001.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/elasticsearch-px-universe-001.PNG
--------------------------------------------------------------------------------
/images/elasticsearch-px-universe-002.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/elasticsearch-px-universe-002.PNG
--------------------------------------------------------------------------------
/images/elasticsearch-px-universe-003.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/elasticsearch-px-universe-003.PNG
--------------------------------------------------------------------------------
/images/elasticsearch-px-universe-004.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/elasticsearch-px-universe-004.PNG
--------------------------------------------------------------------------------
/images/elasticsearch-px-universe-005.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/elasticsearch-px-universe-005.PNG
--------------------------------------------------------------------------------
/images/elasticsearch-px-universe-006.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/elasticsearch-px-universe-006.PNG
--------------------------------------------------------------------------------
/images/elasticsearch-px-universe-007.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/elasticsearch-px-universe-007.PNG
--------------------------------------------------------------------------------
/images/elasticsearch-px-universe-008.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/elasticsearch-px-universe-008.PNG
--------------------------------------------------------------------------------
/images/elasticsearch-px-universe-009.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/elasticsearch-px-universe-009.PNG
--------------------------------------------------------------------------------
/images/elasticsearch-px-universe-010.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/elasticsearch-px-universe-010.PNG
--------------------------------------------------------------------------------
/images/elasticsearch-px-universe-011.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/elasticsearch-px-universe-011.PNG
--------------------------------------------------------------------------------
/images/elasticsearch-px-universe-012.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/elasticsearch-px-universe-012.PNG
--------------------------------------------------------------------------------
/images/elasticsearch-px-universe-013.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/elasticsearch-px-universe-013.PNG
--------------------------------------------------------------------------------
/images/elasticsearch-px-universe-014.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/elasticsearch-px-universe-014.PNG
--------------------------------------------------------------------------------
/images/elasticsearch-px-universe-015.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/elasticsearch-px-universe-015.PNG
--------------------------------------------------------------------------------
/images/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/favicon-16x16.png
--------------------------------------------------------------------------------
/images/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/favicon-32x32.png
--------------------------------------------------------------------------------
/images/favicon-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/favicon-96x96.png
--------------------------------------------------------------------------------
/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/favicon.ico
--------------------------------------------------------------------------------
/images/forkme_right_orange_ff7600.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/forkme_right_orange_ff7600.png
--------------------------------------------------------------------------------
/images/grafana-portworx-dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/grafana-portworx-dashboard.png
--------------------------------------------------------------------------------
/images/grafana_cluster_status.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/grafana_cluster_status.png
--------------------------------------------------------------------------------
/images/grafana_datastore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/grafana_datastore.png
--------------------------------------------------------------------------------
/images/grafana_volume_status.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/grafana_volume_status.png
--------------------------------------------------------------------------------
/images/hadoop-ra-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/hadoop-ra-1.png
--------------------------------------------------------------------------------
/images/hadoop-ra-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/hadoop-ra-2.png
--------------------------------------------------------------------------------
/images/hardware-configuration.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/hardware-configuration.png
--------------------------------------------------------------------------------
/images/hardware-profile-example-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/hardware-profile-example-updated.png
--------------------------------------------------------------------------------
/images/hardware-profile-example.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/hardware-profile-example.png
--------------------------------------------------------------------------------
/images/hbase-px-universe-001.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/hbase-px-universe-001.PNG
--------------------------------------------------------------------------------
/images/hbase-px-universe-002.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/hbase-px-universe-002.PNG
--------------------------------------------------------------------------------
/images/hbase-px-universe-003.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/hbase-px-universe-003.PNG
--------------------------------------------------------------------------------
/images/hbase-px-universe-004.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/hbase-px-universe-004.PNG
--------------------------------------------------------------------------------
/images/iam-role.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/iam-role.png
--------------------------------------------------------------------------------
/images/ibm-cloud.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/ibm-cloud.png
--------------------------------------------------------------------------------
/images/ic_close_black_18dp_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/ic_close_black_18dp_2x.png
--------------------------------------------------------------------------------
/images/jenkins1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/jenkins1.png
--------------------------------------------------------------------------------
/images/jenkins2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/jenkins2.png
--------------------------------------------------------------------------------
/images/jenkins3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/jenkins3.png
--------------------------------------------------------------------------------
/images/jenkins4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/jenkins4.png
--------------------------------------------------------------------------------
/images/k8s-porx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/k8s-porx.png
--------------------------------------------------------------------------------
/images/kibana-customer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/kibana-customer.png
--------------------------------------------------------------------------------
/images/kibana-px-index-pattern.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/kibana-px-index-pattern.png
--------------------------------------------------------------------------------
/images/kibanaBank.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/kibanaBank.png
--------------------------------------------------------------------------------
/images/launch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/launch.png
--------------------------------------------------------------------------------
/images/lh-archive-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-archive-icon.png
--------------------------------------------------------------------------------
/images/lh-group-snapshot-index.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-group-snapshot-index.png
--------------------------------------------------------------------------------
/images/lh-group-snapshot-multi-filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-group-snapshot-multi-filter.png
--------------------------------------------------------------------------------
/images/lh-group-snapshot-single-filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-group-snapshot-single-filter.png
--------------------------------------------------------------------------------
/images/lh-new-add-cluster.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-new-add-cluster.png
--------------------------------------------------------------------------------
/images/lh-new-archive-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-new-archive-icon.png
--------------------------------------------------------------------------------
/images/lh-new-cloud-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-new-cloud-icon.png
--------------------------------------------------------------------------------
/images/lh-new-delete-cluster.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-new-delete-cluster.png
--------------------------------------------------------------------------------
/images/lh-new-edit-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-new-edit-icon.png
--------------------------------------------------------------------------------
/images/lh-new-filtered-volumes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-new-filtered-volumes.png
--------------------------------------------------------------------------------
/images/lh-new-filters.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-new-filters.png
--------------------------------------------------------------------------------
/images/lh-new-menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-new-menu.png
--------------------------------------------------------------------------------
/images/lh-ok-button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-ok-button.png
--------------------------------------------------------------------------------
/images/lh-on-prem-first-login-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-on-prem-first-login-updated.png
--------------------------------------------------------------------------------
/images/lh-on-prem-first-login-updated_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-on-prem-first-login-updated_2.png
--------------------------------------------------------------------------------
/images/lh-on-prem-first-login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-on-prem-first-login.png
--------------------------------------------------------------------------------
/images/lh-update-password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lh-update-password.png
--------------------------------------------------------------------------------
/images/lighthouse-new-azure-credentials.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lighthouse-new-azure-credentials.png
--------------------------------------------------------------------------------
/images/lighthouse-new-cloud-credential.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lighthouse-new-cloud-credential.png
--------------------------------------------------------------------------------
/images/lighthouse-new-cloud-snap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lighthouse-new-cloud-snap.png
--------------------------------------------------------------------------------
/images/lighthouse-new-create-new-credentials-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lighthouse-new-create-new-credentials-1.png
--------------------------------------------------------------------------------
/images/lighthouse-new-google-credentials.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lighthouse-new-google-credentials.png
--------------------------------------------------------------------------------
/images/lighthouse-new-manage-credentials-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lighthouse-new-manage-credentials-1.png
--------------------------------------------------------------------------------
/images/lighthouse-new-s3-credentials.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lighthouse-new-s3-credentials.png
--------------------------------------------------------------------------------
/images/lighthouse-new-volume-info.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lighthouse-new-volume-info.png
--------------------------------------------------------------------------------
/images/lighthouse-new-volume-local-snap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lighthouse-new-volume-local-snap.png
--------------------------------------------------------------------------------
/images/lighthouse-new-volume-update-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lighthouse-new-volume-update-1.png
--------------------------------------------------------------------------------
/images/lighthouse-new-volume-update-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/lighthouse-new-volume-update-2.png
--------------------------------------------------------------------------------
/images/magnifying-glass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/magnifying-glass.png
--------------------------------------------------------------------------------
/images/manage-clusters-server-profiles.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/manage-clusters-server-profiles.png
--------------------------------------------------------------------------------
/images/management-network-interface-selection-menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/management-network-interface-selection-menu.png
--------------------------------------------------------------------------------
/images/mssqllogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/mssqllogo.png
--------------------------------------------------------------------------------
/images/new-cluster-in-lighthouse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/new-cluster-in-lighthouse.png
--------------------------------------------------------------------------------
/images/overview-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/overview-updated.png
--------------------------------------------------------------------------------
/images/overview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/overview.png
--------------------------------------------------------------------------------
/images/packet-cluster-on-lighthouse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/packet-cluster-on-lighthouse.png
--------------------------------------------------------------------------------
/images/packet-data-interface-selection.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/packet-data-interface-selection.png
--------------------------------------------------------------------------------
/images/packet-management-interface-selection.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/packet-management-interface-selection.png
--------------------------------------------------------------------------------
/images/packet-storage-selection.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/packet-storage-selection.png
--------------------------------------------------------------------------------
/images/perf-mysql.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/perf-mysql.png
--------------------------------------------------------------------------------
/images/perf-read.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/perf-read.png
--------------------------------------------------------------------------------
/images/perf-write.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/perf-write.png
--------------------------------------------------------------------------------
/images/pks-vsphere-local.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/pks-vsphere-local.png
--------------------------------------------------------------------------------
/images/pks-vsphere-shared.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/pks-vsphere-shared.png
--------------------------------------------------------------------------------
/images/playlist_generic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/playlist_generic.png
--------------------------------------------------------------------------------
/images/portworx-logo-horizontal-reversed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/portworx-logo-horizontal-reversed.png
--------------------------------------------------------------------------------
/images/portworx-logo-horizontal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/portworx-logo-horizontal.png
--------------------------------------------------------------------------------
/images/prometheus-config.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/prometheus-config.png
--------------------------------------------------------------------------------
/images/px-cluster-on-packet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/px-cluster-on-packet.png
--------------------------------------------------------------------------------
/images/px-hadoop-docker-containers-architecture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/px-hadoop-docker-containers-architecture.png
--------------------------------------------------------------------------------
/images/px-logo-centered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/px-logo-centered.png
--------------------------------------------------------------------------------
/images/px-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/px-logo.png
--------------------------------------------------------------------------------
/images/px-logs-fields.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/px-logs-fields.png
--------------------------------------------------------------------------------
/images/px-metrics-in-prometheus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/px-metrics-in-prometheus.png
--------------------------------------------------------------------------------
/images/rackspace-add-disk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/rackspace-add-disk.png
--------------------------------------------------------------------------------
/images/rackspace-cluster-on-lighthouse-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/rackspace-cluster-on-lighthouse-updated.png
--------------------------------------------------------------------------------
/images/rackspace-pxctl-status.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/rackspace-pxctl-status.png
--------------------------------------------------------------------------------
/images/rancherpx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/rancherpx.png
--------------------------------------------------------------------------------
/images/settings-new-user-creation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/settings-new-user-creation.png
--------------------------------------------------------------------------------
/images/settings-new-user-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/settings-new-user-updated.png
--------------------------------------------------------------------------------
/images/settings-new-user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/settings-new-user.png
--------------------------------------------------------------------------------
/images/settings-user-admin-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/settings-user-admin-updated.png
--------------------------------------------------------------------------------
/images/settings-user-admin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/settings-user-admin.png
--------------------------------------------------------------------------------
/images/shared-virtual-volumes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/shared-virtual-volumes.png
--------------------------------------------------------------------------------
/images/slack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/slack.png
--------------------------------------------------------------------------------
/images/softlayer-add-disk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/softlayer-add-disk.png
--------------------------------------------------------------------------------
/images/softlayer-cluster-on-lighthouse-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/softlayer-cluster-on-lighthouse-updated.png
--------------------------------------------------------------------------------
/images/softlayer-cluster-on-lighthouse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/softlayer-cluster-on-lighthouse.png
--------------------------------------------------------------------------------
/images/softlayer-pxctl-status-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/softlayer-pxctl-status-updated.png
--------------------------------------------------------------------------------
/images/softlayer-pxctl-status.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/softlayer-pxctl-status.png
--------------------------------------------------------------------------------
/images/spark-px-universe-001.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/spark-px-universe-001.PNG
--------------------------------------------------------------------------------
/images/spark-px-universe-002.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/spark-px-universe-002.PNG
--------------------------------------------------------------------------------
/images/spark-px-universe-003.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/spark-px-universe-003.PNG
--------------------------------------------------------------------------------
/images/spark-px-universe-004.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/spark-px-universe-004.PNG
--------------------------------------------------------------------------------
/images/spark-px-universe-005-b.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/spark-px-universe-005-b.PNG
--------------------------------------------------------------------------------
/images/spark-px-universe-005.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/spark-px-universe-005.PNG
--------------------------------------------------------------------------------
/images/spark-px-universe-006-b.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/spark-px-universe-006-b.PNG
--------------------------------------------------------------------------------
/images/spark-px-universe-006.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/spark-px-universe-006.PNG
--------------------------------------------------------------------------------
/images/spark-px-universe-007.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/spark-px-universe-007.PNG
--------------------------------------------------------------------------------
/images/spark-px-universe-008-b.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/spark-px-universe-008-b.PNG
--------------------------------------------------------------------------------
/images/spark-px-universe-008.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/spark-px-universe-008.PNG
--------------------------------------------------------------------------------
/images/spark-px-universe-009.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/spark-px-universe-009.PNG
--------------------------------------------------------------------------------
/images/spark-px-universe-010.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/spark-px-universe-010.PNG
--------------------------------------------------------------------------------
/images/startup-script-result-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/startup-script-result-updated.png
--------------------------------------------------------------------------------
/images/startup-script-result.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/startup-script-result.png
--------------------------------------------------------------------------------
/images/startup-script-window-temp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/startup-script-window-temp.png
--------------------------------------------------------------------------------
/images/startup-script-window-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/startup-script-window-updated.png
--------------------------------------------------------------------------------
/images/startup-script-window.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/startup-script-window.png
--------------------------------------------------------------------------------
/images/status-messages-after-activate-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/status-messages-after-activate-updated.png
--------------------------------------------------------------------------------
/images/status-messages-after-activate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/status-messages-after-activate.png
--------------------------------------------------------------------------------
/images/storage-actions-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/storage-actions-updated.png
--------------------------------------------------------------------------------
/images/storage-actions.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/storage-actions.png
--------------------------------------------------------------------------------
/images/storage-details-updated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/storage-details-updated.png
--------------------------------------------------------------------------------
/images/storage-details.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/storage-details.png
--------------------------------------------------------------------------------
/images/storage-selection-menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/storage-selection-menu.png
--------------------------------------------------------------------------------
/images/storage-with-volume-groups.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/storage-with-volume-groups.png
--------------------------------------------------------------------------------
/images/universe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/universe.png
--------------------------------------------------------------------------------
/images/view-px-logs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/images/view-px-logs.png
--------------------------------------------------------------------------------
/js/jquery.ba-throttle-debounce.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery throttle / debounce - v1.1 - 3/7/2010
3 | * http://benalman.com/projects/jquery-throttle-debounce-plugin/
4 | *
5 | * Copyright (c) 2010 "Cowboy" Ben Alman
6 | * Dual licensed under the MIT and GPL licenses.
7 | * http://benalman.com/about/license/
8 | */
9 | (function(b,c){var $=b.jQuery||b.Cowboy||(b.Cowboy={}),a;$.throttle=a=function(e,f,j,i){var h,d=0;if(typeof f!=="boolean"){i=j;j=f;f=c}function g(){var o=this,m=+new Date()-d,n=arguments;function l(){d=+new Date();j.apply(o,n)}function k(){h=c}if(i&&!h){l()}h&&clearTimeout(h);if(i===c&&m>e){l()}else{if(f!==true){h=setTimeout(i?k:l,i===c?e-m:e)}}}if($.guid){g.guid=j.guid=j.guid||$.guid++}return g};$.debounce=function(d,e,f){return f===c?a(d,e,false):a(d,f,e!==false)}})(this);
--------------------------------------------------------------------------------
/k8s-samples/efk/es-client-svc.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v1
2 | kind: Service
3 | metadata:
4 | name: elasticsearch
5 | labels:
6 | component: elasticsearch
7 | role: client
8 | spec:
9 | type: LoadBalancer
10 | selector:
11 | component: elasticsearch
12 | role: client
13 | ports:
14 | - name: http
15 | port: 9200
16 | protocol: TCP
--------------------------------------------------------------------------------
/k8s-samples/efk/es-data-svc.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v1
2 | kind: Service
3 | metadata:
4 | name: elasticsearch-data
5 | labels:
6 | component: elasticsearch
7 | role: data
8 | spec:
9 | clusterIP: None
10 | selector:
11 | component: elasticsearch
12 | role: data
13 | ports:
14 | - name: transport
15 | port: 9300
16 | protocol: TCP
17 |
--------------------------------------------------------------------------------
/k8s-samples/efk/es-master-svc.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v1
2 | kind: Service
3 | metadata:
4 | name: elasticsearch-discovery
5 | labels:
6 | component: elasticsearch
7 | role: master
8 | spec:
9 | selector:
10 | component: elasticsearch
11 | role: master
12 | ports:
13 | - name: transport
14 | port: 9300
15 | protocol: TCP
--------------------------------------------------------------------------------
/k8s-samples/efk/kibana-svc.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v1
2 | kind: Service
3 | metadata:
4 | name: kibana
5 | namespace: default
6 | labels:
7 | component: kibana
8 | spec:
9 | selector:
10 | component: kibana
11 | type: LoadBalancer
12 | ports:
13 | - name: http
14 | port: 80
15 | targetPort: 5601
16 | protocol: TCP
17 |
--------------------------------------------------------------------------------
/k8s-samples/existing-lighthouse/authtoken.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/k8s-samples/existing-lighthouse/authtoken.png
--------------------------------------------------------------------------------
/k8s-samples/existing-lighthouse/new-cluster.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/portworx/px-docs/969034d2293b4668c6a70899a016cbd2b058f5bd/k8s-samples/existing-lighthouse/new-cluster.png
--------------------------------------------------------------------------------
/k8s-samples/grafana/config/dashboardConfig.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: 1
2 | providers:
3 | - name: 'default'
4 | orgId: 1
5 | folder: ''
6 | type: file
7 | disableDeletion: false
8 | editable: false
9 | options:
10 | path: /var/lib/grafana/dashboards
--------------------------------------------------------------------------------
/k8s-samples/mariadb:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/k8s-samples/mssql/mssql_deployment.yml:
--------------------------------------------------------------------------------
1 | apiVersion: extensions/v1beta1
2 | kind: Deployment
3 | metadata:
4 | name: mssql
5 | spec:
6 | strategy:
7 | rollingUpdate:
8 | maxSurge: 1
9 | maxUnavailable: 1
10 | type: RollingUpdate
11 | replicas: 1
12 | template:
13 | metadata:
14 | labels:
15 | app: mssql
16 | spec:
17 | containers:
18 | - name: mssql
19 | image: microsoft/mssql-server-linux
20 | imagePullPolicy: "IfNotPresent"
21 | ports:
22 | - containerPort: 1433
23 | env:
24 | - name: ACCEPT_EULA
25 | value: "Y"
26 | - name: SA_PASSWORD
27 | value: "P@ssw0rd"
28 | volumeMounts:
29 | - mountPath: /var/opt/mssql
30 | name: mssqldb
31 | volumes:
32 | - name: mssqldb
33 | persistentVolumeClaim:
34 | claimName: mssql-data
35 |
--------------------------------------------------------------------------------
/k8s-samples/mssql/mssql_pvc.yml:
--------------------------------------------------------------------------------
1 | ##### Portworx persistent volume claim
2 | kind: PersistentVolumeClaim
3 | apiVersion: v1
4 | metadata:
5 | name: mssql-data
6 | annotations:
7 | volume.beta.kubernetes.io/storage-class: px-mssql-sc
8 | spec:
9 | accessModes:
10 | - ReadWriteOnce
11 | resources:
12 | requests:
13 | storage: 5Gi
14 |
--------------------------------------------------------------------------------
/k8s-samples/mssql/mssql_sc.yml:
--------------------------------------------------------------------------------
1 | ##### Portworx storage class
2 | kind: StorageClass
3 | apiVersion: storage.k8s.io/v1beta1
4 | metadata:
5 | name: px-mssql-sc
6 | provisioner: kubernetes.io/portworx-volume
7 | parameters:
8 | repl: "3"
9 | io_profile: "db"
10 | allowVolumeExpansion: true
11 |
--------------------------------------------------------------------------------
/k8s-samples/mssql/mssql_svc.yml:
--------------------------------------------------------------------------------
1 | apiVersion: v1
2 | kind: Service
3 | metadata:
4 | name: mssql
5 | labels:
6 | app: mssql
7 | spec:
8 | ports:
9 | - port: 1433
10 | nodePort: 30333
11 | selector:
12 | app: mssql
13 | type: NodePort
14 |
--------------------------------------------------------------------------------
/k8s-samples/portworx-mysql-sc.yaml:
--------------------------------------------------------------------------------
1 | kind: StorageClass
2 | apiVersion: storage.k8s.io/v1beta1
3 | metadata:
4 | name: portworx-repl2
5 | provisioner: kubernetes.io/portworx-volume
6 | parameters:
7 | repl: "2"
8 | snap_interval: "70"
9 |
10 |
--------------------------------------------------------------------------------
/k8s-samples/portworx-mysql-snap-pod.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v1
2 | kind: Pod
3 | metadata:
4 | name: test-portworx-snapped-volume-pod
5 | spec:
6 | containers:
7 | - image: mysql:5.6
8 | name: mysql-snap
9 | env:
10 | # Use secret in real usage
11 | - name: MYSQL_ROOT_PASSWORD
12 | value: password
13 | ports:
14 | - containerPort: 3306
15 | name: mysql
16 | volumeMounts:
17 | - name: snap-01
18 | mountPath: /var/lib/mysql
19 | volumes:
20 | - name: snap-01
21 | # This Portworx volume must already exist.
22 | portworxVolume:
23 | volumeID: "vol1"
24 |
--------------------------------------------------------------------------------
/k8s-samples/portworx-mysql-statefulset.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v1
2 | kind: Service
3 | metadata:
4 | name: mysql-01
5 | labels:
6 | app: mysql
7 | spec:
8 | ports:
9 | - port: 3306
10 | name: mysql
11 | clusterIP: None
12 | selector:
13 | app: mysql
14 | ---
15 | apiVersion: apps/v1beta1
16 | kind: StatefulSet
17 | metadata:
18 | name: mysql-statefull
19 | spec:
20 | serviceName: "mysql"
21 | replicas: 1
22 | template:
23 | metadata:
24 | labels:
25 | app: mysql
26 | spec:
27 | terminationGracePeriodSeconds: 10
28 | containers:
29 | - name: mysql
30 | image: mysql:5.6
31 | env:
32 | # Use secret in real usage
33 | - name: MYSQL_ROOT_PASSWORD
34 | value: password
35 | ports:
36 | - containerPort: 3306
37 | name: mysql
38 | volumeMounts:
39 | - name: mysql-vol-01
40 | mountPath: /var/lib/mysql
41 | volumeClaimTemplates:
42 | - metadata:
43 | name: mysql-vol-01
44 | annotations:
45 | volume.beta.kubernetes.io/storage-class: portworx-repl2
46 | spec:
47 | accessModes: [ "ReadWriteMany" ]
48 | resources:
49 | requests:
50 | storage: 20Gi
51 |
52 |
--------------------------------------------------------------------------------
/k8s-samples/portworx-volume-pod.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v1
2 | kind: Pod
3 | metadata:
4 | name: test-portworx-volume-pod
5 | spec:
6 | containers:
7 | - image: gcr.io/google_containers/test-webserver
8 | name: test-container
9 | volumeMounts:
10 | - mountPath: /test-portworx-volume
11 | name: test-volume
12 | volumes:
13 | - name: test-volume
14 | # This Portworx volume must already exist.
15 | portworxVolume:
16 | volumeID: "vol1"
17 |
--------------------------------------------------------------------------------
/k8s-samples/portworx-volume-pv.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v1
2 | kind: PersistentVolume
3 | metadata:
4 | name: pv0001
5 | spec:
6 | capacity:
7 | storage: 2Gi
8 | accessModes:
9 | - ReadWriteOnce
10 | persistentVolumeReclaimPolicy: Retain
11 | portworxVolume:
12 | volumeID: "pv0001"
13 |
--------------------------------------------------------------------------------
/k8s-samples/portworx-volume-pvc.yaml:
--------------------------------------------------------------------------------
1 | kind: PersistentVolumeClaim
2 | apiVersion: v1
3 | metadata:
4 | name: pvc0001
5 | spec:
6 | accessModes:
7 | - ReadWriteOnce
8 | resources:
9 | requests:
10 | storage: 2Gi
--------------------------------------------------------------------------------
/k8s-samples/portworx-volume-pvcpod.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v1
2 | kind: Pod
3 | metadata:
4 | name: pvpod
5 | spec:
6 | containers:
7 | - name: test-container
8 | image: gcr.io/google_containers/test-webserver
9 | volumeMounts:
10 | - name: test-volume
11 | mountPath: /test-portworx-volume
12 | volumes:
13 | - name: test-volume
14 | persistentVolumeClaim:
15 | claimName: pvc0001
16 |
--------------------------------------------------------------------------------
/k8s-samples/portworx-volume-pvcsc.yaml:
--------------------------------------------------------------------------------
1 | kind: PersistentVolumeClaim
2 | apiVersion: v1
3 | metadata:
4 | name: pvcsc001
5 | annotations:
6 | volume.beta.kubernetes.io/storage-class: portworx-sc
7 | spec:
8 | accessModes:
9 | - ReadWriteOnce
10 | resources:
11 | requests:
12 | storage: 2Gi
13 |
--------------------------------------------------------------------------------
/k8s-samples/portworx-volume-pvcscpod.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v1
2 | kind: Pod
3 | metadata:
4 | name: pvpod
5 | spec:
6 | containers:
7 | - name: test-container
8 | image: gcr.io/google_containers/test-webserver
9 | volumeMounts:
10 | - name: test-volume
11 | mountPath: /test-portworx-volume
12 | volumes:
13 | - name: test-volume
14 | persistentVolumeClaim:
15 | claimName: pvcsc001
16 |
--------------------------------------------------------------------------------
/k8s-samples/portworx-volume-sc-repl.yaml:
--------------------------------------------------------------------------------
1 | kind: StorageClass
2 | apiVersion: storage.k8s.io/v1beta1
3 | metadata:
4 | name: portworx-sc-repl
5 | provisioner: kubernetes.io/portworx-volume
6 | parameters:
7 | repl: "3"
8 |
--------------------------------------------------------------------------------
/k8s-samples/portworx-volume-sc.yaml:
--------------------------------------------------------------------------------
1 | kind: StorageClass
2 | apiVersion: storage.k8s.io/v1beta1
3 | metadata:
4 | name: portworx-sc
5 | provisioner: kubernetes.io/portworx-volume
6 | parameters:
7 | repl: "1"
8 |
--------------------------------------------------------------------------------
/k8s-samples/portworx-volume-shared-pod-1.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v1
2 | kind: Pod
3 | metadata:
4 | name: pod1
5 | spec:
6 | containers:
7 | - name: test-container
8 | image: gcr.io/google_containers/test-webserver
9 | volumeMounts:
10 | - name: test-volume
11 | mountPath: /test-portworx-volume
12 | volumes:
13 | - name: test-volume
14 | persistentVolumeClaim:
15 | claimName: px-shared-pvc
16 |
--------------------------------------------------------------------------------
/k8s-samples/portworx-volume-shared-pod-2.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v1
2 | kind: Pod
3 | metadata:
4 | name: pod2
5 | spec:
6 | containers:
7 | - name: test-container
8 | image: gcr.io/google_containers/test-webserver
9 | volumeMounts:
10 | - name: test-volume
11 | mountPath: /test-portworx-volume
12 | volumes:
13 | - name: test-volume
14 | persistentVolumeClaim:
15 | claimName: px-shared-pvc
16 |
--------------------------------------------------------------------------------
/k8s-samples/portworx-volume-shared-pvc.yaml:
--------------------------------------------------------------------------------
1 | kind: PersistentVolumeClaim
2 | apiVersion: v1
3 | metadata:
4 | name: px-shared-pvc
5 | annotations:
6 | volume.beta.kubernetes.io/storage-class: px-shared-sc
7 | spec:
8 | accessModes:
9 | - ReadWriteMany
10 | resources:
11 | requests:
12 | storage: 10Gi
13 |
--------------------------------------------------------------------------------
/k8s-samples/portworx-volume-shared-sc.yaml:
--------------------------------------------------------------------------------
1 | kind: StorageClass
2 | apiVersion: storage.k8s.io/v1beta1
3 | metadata:
4 | name: px-shared-sc
5 | provisioner: kubernetes.io/portworx-volume
6 | parameters:
7 | repl: "1"
8 | shared: "true"
9 |
--------------------------------------------------------------------------------
/k8s-samples/prometheus/02-service-monitor.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: monitoring.coreos.com/v1
2 | kind: ServiceMonitor
3 | metadata:
4 | namespace: kube-system
5 | name: portworx-prometheus-sm
6 | labels:
7 | name: portworx-prometheus-sm
8 | spec:
9 | selector:
10 | matchLabels:
11 | name: portworx
12 | namespaceSelector:
13 | any: true
14 | endpoints:
15 | - port: px-api
16 | targetPort: 9001
--------------------------------------------------------------------------------
/k8s-samples/prometheus/03-alertmanager-cluster.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: monitoring.coreos.com/v1
2 | kind: Alertmanager
3 | metadata:
4 | name: portworx #This name is important since the Alertmanager pods wont start unless a secret named alertmanager-${ALERTMANAGER_NAME} is created. in this case if would expect alertmanager-portworx secret in the kube-system namespace
5 | namespace: kube-system
6 | labels:
7 | alertmanager: portworx
8 | spec:
9 | replicas: 3
--------------------------------------------------------------------------------
/k8s-samples/prometheus/04-alertmanager.yaml:
--------------------------------------------------------------------------------
1 | global:
2 | # The smarthost and SMTP sender used for mail notifications.
3 | smtp_smarthost: 'smtp.gmail.com:587'
4 | smtp_from: '