Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions website/docs/_constants.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{/* This file stores constants used across the documentation */}

export const versions = {
latestVersion: 'v0.8.x',
quickStartDockerTag: 'v0.8.0'
latestVersion: 'v0.9.x',
quickStartDockerTag: 'v0.9.0'
};
56 changes: 28 additions & 28 deletions website/docs/getting-started/managed-cluster.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,10 @@ While following the OpenChoreo installation guide, apply these Agent Manager-spe

| Component | Required Values File |
|-----------|---------------------|
| **Build Plane** | [values-bp.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/single-cluster/values-bp.yaml) |
| **Observability Plane** | [values-op.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/single-cluster/values-op.yaml) |
| **Control Plane** | [values-cp.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/single-cluster/values-cp.yaml) |
| **Data Plane** | [values-dp.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/single-cluster/values-dp.yaml) |
| **Build Plane** | [values-bp.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/single-cluster/values-bp.yaml) |
| **Observability Plane** | [values-op.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/single-cluster/values-op.yaml) |
| **Control Plane** | [values-cp.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/single-cluster/values-cp.yaml) |
| **Data Plane** | [values-dp.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/single-cluster/values-dp.yaml) |

### Installation Steps

Expand Down Expand Up @@ -244,7 +244,7 @@ echo "Registry endpoint: ${REGISTRY_ENDPOINT}"
kubectl create namespace openchoreo-observability-plane

# Apply custom OpenTelemetry Collector ConfigMap (required for Agent Manager)
kubectl apply -f https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/values/oc-collector-configmap.yaml \
kubectl apply -f https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/values/oc-collector-configmap.yaml \
-n openchoreo-observability-plane
```

Expand Down Expand Up @@ -372,8 +372,8 @@ The Agent Manager installation consists of five main components:
Set the following environment variables before installation:

```bash
# Version (default: 0.8.0)
export VERSION="0.8.0"
# Version (default: 0.9.0)
export VERSION="0.9.0"

# Helm chart registry
export HELM_CHART_REGISTRY="ghcr.io/wso2"
Expand Down Expand Up @@ -412,7 +412,7 @@ This configuration sets up API authentication (using JWT/JWKS) and rate limiting

```bash
# Apply Gateway Operator configuration
kubectl apply -f https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/values/api-platform-operator-full-config.yaml
kubectl apply -f https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/values/api-platform-operator-full-config.yaml
```

### Step 2: Create Gateway and API Resources
Expand All @@ -421,14 +421,14 @@ Deploy the observability gateway and trace API endpoint for secure trace ingesti

```bash
# Apply Observability Gateway
kubectl apply -f https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/values/obs-gateway.yaml
kubectl apply -f https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/values/obs-gateway.yaml

# Wait for Gateway to be programmed
kubectl wait --for=condition=Programmed \
apigateway/obs-gateway -n ${DATA_PLANE_NS} --timeout=180s

# Apply OTEL Collector RestApi
kubectl apply -f https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/values/otel-collector-rest-api.yaml
kubectl apply -f https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/values/otel-collector-rest-api.yaml

# Wait for RestApi to be programmed
kubectl wait --for=condition=Programmed \
Expand All @@ -446,7 +446,7 @@ export SECRETS_NS="amp-secrets"
# Install Secrets Extension with dev mode enabled (for development/quickstart)
helm install amp-secrets \
oci://${HELM_CHART_REGISTRY}/wso2-amp-secrets-extension \
--version 0.8.0 \
--version 0.9.0 \
--namespace ${SECRETS_NS} \
--create-namespace \
--set openbao.server.dev.enabled=true \
Expand All @@ -466,7 +466,7 @@ export THUNDER_NS="amp-thunder"
# Install AMP Thunder Extension
helm install amp-thunder-extension \
oci://${HELM_CHART_REGISTRY}/wso2-amp-thunder-extension \
--version 0.8.0 \
--version 0.9.0 \
--namespace ${THUNDER_NS} \
--create-namespace \
--timeout 1800s
Expand Down Expand Up @@ -498,7 +498,7 @@ echo "Observability Gateway: ${OBS_GATEWAY_IP}"
# Install the platform Helm chart with instrumentation URL configured
helm install amp \
oci://${HELM_CHART_REGISTRY}/wso2-agent-manager \
--version 0.8.0 \
--version 0.9.0 \
--namespace ${AMP_NS} \
--create-namespace \
--set console.config.instrumentationUrl="http://${OBS_GATEWAY_IP}:22893/otel" \
Expand Down Expand Up @@ -540,7 +540,7 @@ The Platform Resources Extension creates default resources:
# Install Platform Resources Extension
helm install amp-platform-resources \
oci://${HELM_CHART_REGISTRY}/wso2-amp-platform-resources-extension \
--version 0.8.0 \
--version 0.9.0 \
--namespace ${DEFAULT_NS} \
--timeout 1800s
```
Expand All @@ -555,7 +555,7 @@ The observability extension includes the Traces Observer service for querying tr

```bash
# Verify or apply the OpenTelemetry collector config map
kubectl apply -f https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/values/oc-collector-configmap.yaml \
kubectl apply -f https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/values/oc-collector-configmap.yaml \
-n ${OBSERVABILITY_NS}
```

Expand All @@ -565,7 +565,7 @@ kubectl apply -f https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0
# Install observability Helm chart
helm install amp-observability-traces \
oci://${HELM_CHART_REGISTRY}/wso2-amp-observability-extension \
--version 0.8.0 \
--version 0.9.0 \
--namespace ${OBSERVABILITY_NS} \
--timeout 1800s
```
Expand Down Expand Up @@ -597,7 +597,7 @@ echo "Using registry endpoint: ${REGISTRY_ENDPOINT}"
# Install Build Extension with the same registry endpoint
helm install build-workflow-extensions \
oci://${HELM_CHART_REGISTRY}/wso2-amp-build-extension \
--version 0.8.0 \
--version 0.9.0 \
--namespace ${BUILD_CI_NS} \
--set global.registry.endpoint=${REGISTRY_ENDPOINT} \
--timeout 1800s
Expand All @@ -624,7 +624,7 @@ export REGISTRY_ENDPOINT="registry.${CP_DOMAIN}"
# Install Build Extension
helm install build-workflow-extensions \
oci://${HELM_CHART_REGISTRY}/wso2-amp-build-extension \
--version 0.8.0 \
--version 0.9.0 \
--namespace ${BUILD_CI_NS} \
--set global.registry.endpoint=${REGISTRY_ENDPOINT} \
--timeout 1800s
Expand Down Expand Up @@ -656,7 +656,7 @@ The Evaluation Extension provides workflow templates for running automated evalu
# Install Evaluation Extension
helm install amp-evaluation-extension \
oci://${HELM_CHART_REGISTRY}/wso2-amp-evaluation-extension \
--version 0.8.0 \
--version 0.9.0 \
--namespace ${BUILD_CI_NS} \
--timeout 1800s
```
Expand All @@ -666,7 +666,7 @@ helm install amp-evaluation-extension \
```bash
helm install amp-evaluation-extension \
oci://${HELM_CHART_REGISTRY}/wso2-amp-evaluation-extension \
--version 0.8.0 \
--version 0.9.0 \
--namespace ${BUILD_CI_NS} \
--set ampEvaluation.publisher.apiKey="your-custom-key" \
--timeout 1800s
Expand Down Expand Up @@ -932,13 +932,13 @@ aws ec2 describe-security-groups --filters "Name=tag:kubernetes.io/cluster/<clus

All configuration values files used in this guide are available in the repository:

- **Control Plane Values**: [deployments/single-cluster/values-cp.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/single-cluster/values-cp.yaml)
- **Data Plane Values**: [deployments/single-cluster/values-dp.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/single-cluster/values-dp.yaml)
- **Build Plane Values**: [deployments/single-cluster/values-bp.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/single-cluster/values-bp.yaml)
- **Observability Plane Values**: [deployments/single-cluster/values-op.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/single-cluster/values-op.yaml)
- **Gateway Operator Config**: [deployments/values/api-platform-operator-full-config.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/values/api-platform-operator-full-config.yaml)
- **Observability Gateway**: [deployments/values/obs-gateway.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/values/obs-gateway.yaml)
- **OTEL Collector ConfigMap**: [deployments/values/oc-collector-configmap.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/values/oc-collector-configmap.yaml)
- **OTEL Collector RestApi**: [deployments/values/otel-collector-rest-api.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.8.0/deployments/values/otel-collector-rest-api.yaml)
- **Control Plane Values**: [deployments/single-cluster/values-cp.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/single-cluster/values-cp.yaml)
- **Data Plane Values**: [deployments/single-cluster/values-dp.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/single-cluster/values-dp.yaml)
- **Build Plane Values**: [deployments/single-cluster/values-bp.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/single-cluster/values-bp.yaml)
- **Observability Plane Values**: [deployments/single-cluster/values-op.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/single-cluster/values-op.yaml)
- **Gateway Operator Config**: [deployments/values/api-platform-operator-full-config.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/values/api-platform-operator-full-config.yaml)
- **Observability Gateway**: [deployments/values/obs-gateway.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/values/obs-gateway.yaml)
- **OTEL Collector ConfigMap**: [deployments/values/oc-collector-configmap.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/values/oc-collector-configmap.yaml)
- **OTEL Collector RestApi**: [deployments/values/otel-collector-rest-api.yaml](https://raw.githubusercontent.com/wso2/agent-manager/amp/v0.9.0/deployments/values/otel-collector-rest-api.yaml)

You can customize these files for your specific deployment needs.
2 changes: 1 addition & 1 deletion website/docs/getting-started/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The quick-start includes a dev container with all required tools pre-installed (
docker run --rm -it --name amp-quick-start \
-v /var/run/docker.sock:/var/run/docker.sock \
--network=host \
ghcr.io/wso2/amp-quick-start:v0.8.0
ghcr.io/wso2/amp-quick-start:v0.9.0
```

### Step 2: Run Installation Inside Container
Expand Down
Loading
Loading