File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -120,6 +120,26 @@ _Appears in:_
120120| ` value ` _ string_ | Value of the environment variable | | Required: \{\} <br /> |
121121
122122
123+ #### GitSource
124+
125+
126+
127+ GitSource defines Git repository source configuration
128+
129+
130+
131+ _ Appears in:_
132+ - [ MCPRegistrySource] ( #mcpregistrysource )
133+
134+ | Field | Description | Default | Validation |
135+ | --- | --- | --- | --- |
136+ | ` repository ` _ string_ | Repository is the Git repository URL (HTTP/HTTPS/SSH) | | MinLength: 1 <br />Pattern: ` ^(https?://\|git@\|ssh://\|git://).* ` <br />Required: \{\} <br /> |
137+ | ` branch ` _ string_ | Branch is the Git branch to use (mutually exclusive with Tag and Commit) | | MinLength: 1 <br /> |
138+ | ` tag ` _ string_ | Tag is the Git tag to use (mutually exclusive with Branch and Commit) | | MinLength: 1 <br /> |
139+ | ` commit ` _ string_ | Commit is the Git commit SHA to use (mutually exclusive with Branch and Tag) | | MinLength: 1 <br /> |
140+ | ` path ` _ string_ | Path is the path to the registry file within the repository | registry.json | Pattern: ` ^.*\.json$ ` <br /> |
141+
142+
123143#### InlineAuthzConfig
124144
125145
@@ -260,9 +280,10 @@ _Appears in:_
260280
261281| Field | Description | Default | Validation |
262282| --- | --- | --- | --- |
263- | ` type ` _ string_ | Type is the type of source (configmap) | configmap | Enum: [ configmap] <br /> |
283+ | ` type ` _ string_ | Type is the type of source (configmap, git ) | configmap | Enum: [ configmap git ] <br /> |
264284| ` format ` _ string_ | Format is the data format (toolhive, upstream) | toolhive | Enum: [ toolhive upstream] <br /> |
265285| ` configmap ` _ [ ConfigMapSource] ( #configmapsource ) _ | ConfigMap defines the ConfigMap source configuration<br />Only used when Type is "configmap" | | |
286+ | ` git ` _ [ GitSource] ( #gitsource ) _ | Git defines the Git repository source configuration<br />Only used when Type is "git" | | |
266287
267288
268289#### MCPRegistrySpec
You can’t perform that action at this time.
0 commit comments