Skip to content

Commit

Permalink
fix: remove use minimal values (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
srodenhuis authored Nov 1, 2024
1 parent 7aeff08 commit 32527d3
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 30 deletions.
6 changes: 3 additions & 3 deletions docs/get-started/installation/akamai-cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ sidebar_label: Akamai Cloud

Soon you'll be able to provision a LKE cluster combined with the Application Platform. This will have the following advantages compared to installing the Application Platform manually:

- The Application Platform will be automatically installed for you on LKE
- The Application Platform will be automatically installed for you on LKE.

- Each LKE cluster where the Application Platform is installed will automatically be configured to use Akamai Edge DNS (for FREE!)
- Each LKE cluster where the Application Platform is installed will automatically be configured to use Akamai Edge DNS (for FREE!).

- If approved by the user, all the required Buckets in Object Storage will be created for you
- If approved by the user, all the required Buckets in Object Storage will be automatically created in your account.

Like to be the first to try it out? Sign up now for the [Beta Program](https://cloud.linode.com/betas)!
34 changes: 25 additions & 9 deletions docs/get-started/installation/custom.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,15 @@ To install on any other conformant Kubernetes, use the `custom` provider. Make s

## Prerequisites

### Kubernetes versions
### Kubernetes

The following Kubernetes versions are currently supported:
Have a Kubernetes cluster running with one of the following Kubernetes versions:

- `1.28`
- `1.29`
- `1.30`
- `1.31`

### Compute resources

A node pool with at least **12 vCPU** and **24 GB RAM** is required.
and a node pool with at least **12 vCPU** and **24 GB RAM**.

### Default storage class

Expand Down Expand Up @@ -130,11 +128,11 @@ A [Cluster Autoscaler](https://github.com/kubernetes/autoscaler) is NOT installe

### DNS

The [Builds](../../for-devs/console/builds.md) and [Projects](../../for-devs/console/projects.md) features are NOT supported without DNS. Install with [DNS](dns.md) to use all the features.
Access to a DNS zone. See the [DNS](dns.md) section for more information. The `custom` provider can be used in combination with any [DNS](dns.md) provider.

## Install using Helm

To install using the `custom` provider, use the following values:
1. Create a `values.yaml`:

```bash
tee values.yaml<<EOF
Expand All @@ -147,7 +145,25 @@ apps:
extraArgs:
kubelet-insecure-tls: true
kubelet-preferred-address-types: InternalIP
# dns is required!
dns:
domainFilters:
- <your-domain>
provider:
linode:
apiToken: $LINODE_TOKEN
EOF
```

The `custom` provider can be used in combination with any [DNS](dns.md) provider.
2. Add the repository:

```bash
helm repo add apl https://linode.github.io/apl-core
helm repo update
```

3. Install the Helm chart:

```bash
helm install -f values.yaml apl apl/apl
```
16 changes: 4 additions & 12 deletions docs/get-started/installation/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,6 @@ helm repo update

See [helm repo](https://helm.sh/docs/helm/helm_repo/) for command documentation.

## Minimal values

:::info
The [Builds](../../for-devs/console/builds.md) and [Projects](../../for-devs/console/projects.md) features are NOT supported without DNS configured. Install with DNS to use all features.
:::

```yaml
cluster:
name: # the name of your cluster
provider: # choose between aws, azure, google, digitalocean, ovh, vultr, scaleway or custom
```
When the chart is installed, follow the [post installation steps](post-install-steps.md).

## Custom values
Expand All @@ -50,6 +38,10 @@ To test wether the input values are correct run the following command:
helm template -f values.yaml apl/apl
```

## Customize the values

Adjust the `values.yaml` by changing the `provider` and adding `dns` configuration.

## Install the Helm chart

Install the Helm chart:
Expand Down
12 changes: 6 additions & 6 deletions docs/get-started/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ title: Overview
sidebar_label: Overview
---

**How to get started with Application Platform for LKE**
**How to get started with Akamai Application Platform**

---

### Step 1: [Install Application Platform for LKE](installation/overview.md)
Install Application Platform for LKE on Linode Kubernetes Engine (LKE) or any other conformant Kubernetes cluster.
### Step 1: [Install the Application Platform](installation/overview.md)
Install the Application Platform on Linode Kubernetes Engine (LKE) or any other conformant Kubernetes cluster.

### Step 2: [Follow the post installation steps ](installation/post-install-steps.md)
Configure Application Platform for LKE for your use case.
Configure the Application Platform for usage.

### Step 3: [Explore Application Platform for LKE using the Labs](labs/labs-overview.md)
Explore Application Platform for LKE with a comprehensive set of hands-on labs.
### Step 3: [Explore the Application Platform using the Labs](labs/labs-overview.md)
Explore the Application Platform with a comprehensive set of hands-on labs.

0 comments on commit 32527d3

Please sign in to comment.