You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "Final generated file contents (first 50 lines):"
222
+
head -50 "src/app/docs/kagent/resources/helm/page.mdx"
173
223
174
224
- name: Create Pull Request
175
225
uses: peter-evans/create-pull-request@v6
@@ -182,7 +232,7 @@ jobs:
182
232
body: |
183
233
Automated API and kagent Helm chart documentation update based on the latest commit [`${{ env.KAGENT_COMMIT }}`](https://github.com/${{ github.repository_owner }}/kagent/commit/${{ env.KAGENT_COMMIT }}) to `main` in the **kagent** repository.
184
234
185
-
This PR was automatically generated by the [**Update Reference documentation** workflow](https://github.com/kagent-dev/website/actions/workflows/update-ref-docs.yaml).
235
+
This PR was automatically generated by the [**Update Reference documentation** workflow](https://github.com/${{ github.repository_owner }}/website/actions/workflows/update-ref-docs.yaml).
@@ -120,17 +120,8 @@ Flip through the following tabs to understand the API differences between the ol
120
120
<div id="kmcp-tab">
121
121
kmcp example:
122
122
* The kagent MCPServer includes the Grafana deployment details, with `stdio` as the transport type.
123
-
* The Grafana API key is loaded separately in a Secret, which is more secure.
124
123
```yaml
125
-
apiVersion: v1
126
-
kind: Secret
127
-
metadata:
128
-
name: grafana-api-key
129
-
type: Opaque
130
-
data:
131
-
GRAFANA_API_KEY: my-base-64-ikey
132
-
---
133
-
apiVersion: kagent.dev/v1alpha2
124
+
apiVersion: kagent.dev/v1alpha1
134
125
kind: MCPServer
135
126
metadata:
136
127
name: grafana
@@ -147,6 +138,16 @@ Flip through the following tabs to understand the API differences between the ol
147
138
secretRefs:
148
139
- name: grafana-api-key
149
140
transportType: "stdio"
141
+
```
142
+
* The Grafana API key is stored separately in a Secret, which is more secure.
143
+
```yaml
144
+
apiVersion: v1
145
+
kind: Secret
146
+
metadata:
147
+
name: grafana-api-key
148
+
type: Opaque
149
+
data:
150
+
GRAFANA_API_KEY: my-base-64-ikey
150
151
```
151
152
</div>
152
153
@@ -322,7 +323,7 @@ Here are the 2 api defs:
322
323
323
324
### Top-level field for Agent APIs
324
325
325
-
A new top-level `type` field is added to the Agents API. For existing Agents, set the `type` to `Inline`, and then nest the previous Agent configuration under the `inline` setting.
326
+
A new top-level `type` field is added to the Agents API. For existing Agents, set the `type` to `Declarative`, and then nest the previous Agent configuration inline under the `declarative` setting.
0 commit comments