podman-desktop/extensions/kind/package.json
dependabot[bot] 092fd74498
chore(deps-dev): bump vite from 5.3.3 to 5.3.4 (#8096)
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.3.3 to 5.3.4.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.3.4/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-16 11:15:44 +00:00

118 lines
3.3 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"name": "kind",
"displayName": "Kind",
"description": "Integration for Kind: run local Kubernetes clusters using container “nodes”",
"version": "1.12.0-next",
"icon": "icon.png",
"publisher": "podman-desktop",
"license": "Apache-2.0",
"engines": {
"podman-desktop": "^0.0.1"
},
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Kind",
"properties": {
"kind.cluster.creation.name": {
"type": "string",
"default": "kind-cluster",
"scope": "KubernetesProviderConnectionFactory",
"description": "Name"
},
"kind.cluster.creation.provider": {
"type": "string",
"default": "podman",
"enum": [
"podman",
"docker"
],
"scope": "KubernetesProviderConnectionFactory",
"description": "Provider Type"
},
"kind.cluster.creation.http.port": {
"type": "number",
"default": 9090,
"scope": "KubernetesProviderConnectionFactory",
"description": "HTTP Port"
},
"kind.cluster.creation.https.port": {
"type": "number",
"default": 9443,
"scope": "KubernetesProviderConnectionFactory",
"description": "HTTPS Port"
},
"kind.cluster.creation.ingress": {
"type": "boolean",
"default": true,
"scope": "KubernetesProviderConnectionFactory",
"description": "Setup an ingress controller (Contour https://projectcontour.io)"
},
"kind.cluster.creation.controlPlaneImage": {
"type": "string",
"default": "",
"scope": "KubernetesProviderConnectionFactory",
"placeholder": "Leave empty for using latest.",
"markdownDescription": "Nodes container image (Available image tags on [kind/releases](https://github.com/kubernetes-sigs/kind/releases))"
}
}
},
"icons": {
"kind-icon": {
"description": "Kind icon",
"default": {
"fontPath": "kind-icon.woff2",
"fontCharacter": "\\EA01"
}
}
},
"menus": {
"dashboard/image": [
{
"command": "kind.image.move",
"title": "Push image to Kind cluster",
"disabled": "selectedImageId in imagesPushInProgressToKind"
}
]
},
"views": {
"icons/containersList": [
{
"when": "io.x-k8s.kind.cluster in containerLabelKeys",
"icon": "${kind-icon}"
}
]
},
"commands": [
{
"command": "kind.install",
"title": "Kind: Install..."
},
{
"command": "kind.image.move",
"title": "Kind: Move image to cluster..."
}
]
},
"scripts": {
"install:contour": "tsx ./scripts/download.ts",
"build": "vite build && node ./scripts/build.js",
"test": "vitest run --coverage",
"test:watch": "vitest watch --coverage",
"watch": "vite build -w"
},
"dependencies": {
"@octokit/rest": "^21.0.0",
"@podman-desktop/api": "^0.0.1",
"mustache": "^4.2.0",
"yaml": "^2.4.5"
},
"devDependencies": {
"adm-zip": "^0.5.14",
"mkdirp": "^3.0.1",
"tmp-promise": "^3.0.3",
"tsx": "^4.16.2",
"vite": "^5.3.4",
"vitest": "^1.6.0"
}
}