-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #406 from kubero-dev/dependabot/npm_and_yarn/clien…
…t/vite-4.5.5 Bump vite from 4.5.3 to 4.5.5 in /client
- Loading branch information
Showing
10 changed files
with
141 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
blank_issues_enabled: false | ||
blank_issues_enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Template | ||
description: Sugest or request a new template | ||
title: "Add template for " | ||
labels: ["template"] | ||
body: | ||
- type: input | ||
id: name | ||
attributes: | ||
label: Application Name | ||
description: Name of the application. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the application | ||
description: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
- type: input | ||
id: URL | ||
attributes: | ||
label: URL to the application | ||
description: Main URL to the application. | ||
validations: | ||
required: false | ||
- type: input | ||
id: source | ||
attributes: | ||
label: Source code | ||
description: A link to the source code of the application. (if available) | ||
validations: | ||
required: false | ||
# - type: dropdown | ||
# attributes: | ||
# id: tags | ||
# label: select some tags that apply to the application | ||
# multiple: true | ||
# options: | ||
# - Helper | ||
# - Developer | ||
- type: input | ||
id: dockercompose | ||
attributes: | ||
label: Link to Docker compose | ||
description: A link to the Docker compose of the application. (if available) | ||
validations: | ||
required: false | ||
- type: checkboxes | ||
id: maintainer | ||
attributes: | ||
label: Maintainer | ||
description: Are you the maintainer of the application? | ||
options: | ||
- label: I am the maintainer | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
services: | ||
# Kubero usually runs in a Kubernetes cluster in the kubero namespace | ||
# If you want to run it locally, you can use kind to create a local Kubernetes cluster | ||
# 1) Find your cluster name [YOUR_CLUSTER_NAME] by running `kind get clusters` | ||
# 2) Set the cluster name in the YOUR_CLUSTER_NAME environment variable `export YOUR_CLUSTER_NAME=...` | ||
# 3) run `kind get kubeconfig --name ${YOUR_CLUSTER_NAME} > ./kubeconfig` to get the right config | ||
# 4) replace localhost with the IP of your host machine in the extra_hosts section `sed -i'' -e "s/127.0.0.1/${YOUR_CLUSTER_NAME}-control-plane/g" ./kubeconfig` | ||
kubero: | ||
container_name: "kubero-ui" | ||
build: | ||
context: . | ||
args: | ||
- VERSION=Local-Build | ||
dockerfile: Dockerfile | ||
image: ghcr.io/kubero-dev/kubero/kubero:latest | ||
#command: ["tail", "-f", "/dev/null"] | ||
env_file: | ||
# copy the .env.template file to .env and change the values to your needs | ||
- server/.env | ||
environment: | ||
# change the KUBERO_CONTEXT to the name of your local kind cluster context | ||
# you can find the name by running `kubectl config get-contexts` | ||
# Must be the same as the context name in the kubeconfig file ! | ||
#- KUBECONFIG_BASE64= | ||
- KUBECONFIG_PATH=./kubeconfig | ||
- KUBERO_CONTEXT=kind-${YOUR_CLUSTER_NAME} | ||
- KUBERO_NAMESPACE=kubero | ||
- KUBERO_SESSION_KEY=randomString | ||
ports: | ||
# the UI will be available on http://localhost:8000. Make sure the port is not used by another service | ||
- "8000:2000" | ||
extra_hosts: | ||
# if you are using a local Kubernetes cluster, make sure you use the container name from your | ||
# local kind cluster control plane. You can find the name by running `docker ps` and looking for the | ||
# container name of the control plane. 192.168.65.254 is your host machine IP address. | ||
- "${YOUR_CLUSTER_NAME}-control-plane:192.168.65.254" | ||
volumes: | ||
- ./kubeconfig:/app/server/kubeconfig | ||
- ./server/config.yaml:/app/server/config.yaml | ||
- ./server/db:/app/server/db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters