-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade Jupyter apis to v1.6.0 (#132)
* feat(frontend): upgrade frontend to 1.6 bringing in customizations * feat(translations): for 1.6, PRs (#166), (#183) * fix(angular translations): (#161) * feat(folder structure): changed folder structure to match 1.6 * chore(unwanted code): commented out unwanted features, removed dead code * feat(hint text): added back * feat(tables): add volume table (#145), add kubecost table (#149) * feat(sas): add SAS functionality back (#147) * fix(various): image pull policy fix (#151), validation (#144), volumes (#164) * fix(system language, limits): added back system language input (#150), modify limits (#152) * feat(Taskfile.yaml): update go:build task * fix(sc): added missing api endpoint for storage classes * refactor(Dockerfile): bind API to new port, change copy paths * fix(frontend): icon paths, svg paths, env path to logo svgs and added * fix(backend):update to handle new frontend structure * fix(failing build): (#169) * fix(volume name): update formCtrl.get() (#174) * feat(pro-b):added Pro b icon to notebook and volume table (#179) * fix(default language):language context set to system language input (#180) Co-authored-by: Wendy V Gaultier <wendyvgaultier@gmail.com> Co-authored-by: Bryan Paget <bryan.paget@statcan.gc.ca> Co-authored-by: Rohan Katkar <rohank_17@hotmail.ca> Co-authored-by: Mathis Marcotte <mathis.marcotte@statcan.gc.ca> Co-authored-by: Jose Manuel (Ito) <jose.matsuda@statcan.gc.ca> Co-authored-by: Wendy Gaultier <wendy.gaultier2@canada.ca> Co-authored-by: Jose-Matsuda <jose.matsuda@canada.ca> Co-authored-by: Collin Brown <collin.j.brown95@gmail.com> Co-authored-by: Collin Brown <Collinbrown95@gmail.com> Co-authored-by: Bryan Paget <bbrryyaann@protonmail.com>
- Loading branch information
1 parent
9fcef88
commit 76e7415
Showing
327 changed files
with
78,207 additions
and
19,987 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
coverage_unit.txt | ||
jupyter-apis | ||
crud-web-apps | ||
.task/ | ||
.vscode | ||
.env | ||
.task | ||
__debug_bin | ||
__debug_bin |
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,82 @@ | ||
version: "3" | ||
dotenv: [".env"] | ||
output: prefixed | ||
silent: true | ||
|
||
vars: | ||
CLUSTER_NAME: nginx-test | ||
CONTEXT_NAME: "k3d-{{.CLUSTER_NAME}}" | ||
AGENT_NODE_NAME: k3d-{{.CLUSTER_NAME}}-agent | ||
SERVER_NODE_NAME: k3d-{{.CLUSTER_NAME}}-server | ||
ISTIO_VERSION: "1.7.8" # Match istio control plane version | ||
ISTIOCTL: "istioctl --context={{.CONTEXT_NAME}}" | ||
KUBECTL: "kubectl --context={{.CONTEXT_NAME}}" | ||
REGISTRY_NAME: "{{.CLUSTER_NAME}}-registry" | ||
REGISTRY_PORT: "5050" | ||
DEV_CONTAINER_TAG: "{{.CLUSTER_NAME}}-dev" | ||
|
||
tasks: | ||
# _ _____ _ | ||
# | | _|___ / __| | | ||
# | |/ / |_ \ / _` | | ||
# | < ___) | (_| | | ||
# |_|\_\____/ \__,_| | ||
|
||
k3d:cluster:create: | ||
prefix: ⚙️ > create k3d cluster | ||
desc: create k3d cluster | ||
cmds: | ||
- k3d cluster create --config=k8s/k3d/config.yaml | ||
|
||
k3d:cluster:destroy: | ||
prefix: ⚙️ > destroy | ||
desc: destroy k3d cluster | ||
cmds: | ||
- "k3d cluster delete {{.CLUSTER_NAME}}" | ||
|
||
k3d:start: | ||
prefix: ⚙️ > start | ||
desc: starts k3d cluster | ||
cmds: | ||
- "k3d cluster start {{.CLUSTER_NAME}}" | ||
|
||
k3d:stop: | ||
prefix: ⚙️ > stop | ||
desc: stops k3d cluster | ||
cmds: | ||
- "k3d cluster stop {{.CLUSTER_NAME}}" | ||
|
||
# K8s manifest | ||
k8s:manifest:apply: | ||
prefix: ⚙️ > k8sapply | ||
desc: Apply manifest to k3d cluster | ||
cmds: | ||
- "kustomize build k8s/manifests/ | kubectl apply -f -" | ||
sources: | ||
- k8s/manifests/*.yaml | ||
|
||
# _ _ | ||
# __| | ___ ___| | _____ _ __ | ||
# / _` |/ _ \ / __| |/ / _ \ '__| | ||
# | (_| | (_) | (__| < __/ | | ||
# \__,_|\___/ \___|_|\_\___|_| | ||
# k3d image import nginx-test-dev:latest -c nginx-test | ||
build:dev-image: | ||
prefix: build dev image | ||
desc: build development image | ||
cmds: | ||
- "docker build . -t {{.DEV_CONTAINER_TAG}}" | ||
- "k3d image import {{.DEV_CONTAINER_TAG}}:latest -c {{.CLUSTER_NAME}}" | ||
sources: | ||
- Dockerfile | ||
# ____ ___ ______ ____ | ||
# / ___|_ _| / / ___| _ \ | ||
# | | | | / / | | | | | | ||
# | |___ | | / /| |___| |_| | | ||
# \____|___/_/ \____|____/ | ||
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/go-task/Taskfile.yml | ||
go:build: | ||
desc: Build the Go code | ||
cmds: | ||
- go build -v {{.LDFLAGS}} | ||
|
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
Oops, something went wrong.