Skip to content

Commit

Permalink
GitBook: [#922] Remove 0.16.X upgrade instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Carruthers authored and gitbook-bot committed Nov 28, 2022
1 parent 4ba2509 commit f0cb124
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 287 deletions.
1 change: 0 additions & 1 deletion SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@
* [Custom Kubernetes Cluster Settings](providers/custom-kubernetes-cluster-settings/README.md)
* [VMware Tanzu](providers/custom-kubernetes-cluster-settings/vmware-tanzu.md)
* [Akash Audited Attributes](providers/akash-audited-attributes.md)
* [Akash Provider Migration Guide - 0.14.X to 0.16.3](providers/akash-provider-migration-guide-0.14.x-to-0.16.3.md)
* [Akash Nodes](akash-nodes/README.md)
* [Akash Node Via Helm Charts](akash-nodes/akash-node-via-helm-charts/README.md)
* [Prepare Kubernetes Cluster](akash-nodes/akash-node-via-helm-charts/prepare-kubernetes-cluster.md)
Expand Down
63 changes: 4 additions & 59 deletions features/persistent-storage/persistent-storage-sdl-deepdive.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ The persistent volume is mounted within the container’s local /var/lib/postgre
mount: /var/lib/postgres
```

### Alternative Uses of Params Storage
## Alternative Uses of Params Storage

#### Default Name Use
### Default Name Use

In this example the params > storage section is defined for a storage profile using the default (no name explicitly defined) profile

_**Services Section**_
#### _**Services Section**_

```
services:
Expand All @@ -97,7 +97,7 @@ services:
mount: /var/lib/postgres
```

**Profiles Section**
#### **Profiles Section**

```
profiles:
Expand All @@ -115,58 +115,3 @@ profiles:
persistent: true
class: beta3
```

#### Multiple Container Share of a Single Persistent Volume

In the following example two containers mount a single persistent volume. Both containers would have access to the single volume, named data, via the specified local directory.

_**Services Section**_

```
services:
postgres:
image: postgres/postgres
params:
storage:
data:
mount: /var/lib/postgres
grafana:
image: grafana/grafana
params:
storage:
data:
mount: /var/lib/grafana
```

_**Profiles Section**_

```
profiles:
compute:
grafana-profile:
resources:
cpu:
units: 1
memory:
size: 1Gi
storage:
- size: 512Mi
- name: data
size: 1Gi
attributes:
persistent: true
class: beta3
postgres-profile:
resources:
cpu:
units: 1
memory:
size: 1Gi
storage:
- size: 512Mi
- name: data
size: 1Gi
attributes:
persistent: true
class: beta3
```
227 changes: 0 additions & 227 deletions providers/akash-provider-migration-guide-0.14.x-to-0.16.3.md

This file was deleted.

0 comments on commit f0cb124

Please sign in to comment.