Skip to content

Commit 67f841c

Browse files
authored
Enable custom extensions: example (#3571)
1 parent 47f2d69 commit 67f841c

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

examples/custom-extension/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ This example contains a basic custom extension that queries all deployments of a
44

55
To set up and deploy your own custom Busola extension, follow these steps.
66

7-
1. Adjust the static HTML content.
7+
1. Enable custom extensions in your cluster:
8+
9+
```
10+
kubectl apply -f busola-config.yaml
11+
```
12+
13+
2. Adjust the static HTML content.
814

915
Edit the `ui.html` file to define the static HTML content for your custom extension.
1016

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
kind: ConfigMap
2+
apiVersion: v1
3+
metadata:
4+
name: busola-config
5+
namespace: kube-public
6+
data:
7+
config: |
8+
config:
9+
features:
10+
EXTENSIBILITY_CUSTOM_COMPONENTS:
11+
isEnabled: true

0 commit comments

Comments
 (0)