From c5b26c622fb1d8892d6b94671a45960f39a0ca0b Mon Sep 17 00:00:00 2001 From: Pranaya Shrestha Date: Wed, 28 Jan 2026 10:45:56 -0600 Subject: [PATCH 1/5] feat: add doc for keyboard shortcuts --- .spelling | 6 ++++++ content/4.pecan/4.accessibility/_dir.yml | 1 + .../4.accessibility/keyboard-shortcuts.md | 21 +++++++++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 content/4.pecan/4.accessibility/_dir.yml create mode 100644 content/4.pecan/4.accessibility/keyboard-shortcuts.md diff --git a/.spelling b/.spelling index 9b807cc..4052e37 100644 --- a/.spelling +++ b/.spelling @@ -1278,3 +1278,9 @@ survdiff svcnvfpkmurl svcnv_URL vcf_URL + +# Keys +- content/4.pecan/4.accessibility/keyboard-shortcuts.md +Cmd +Ctrl +Esc diff --git a/content/4.pecan/4.accessibility/_dir.yml b/content/4.pecan/4.accessibility/_dir.yml new file mode 100644 index 0000000..cc5c9b3 --- /dev/null +++ b/content/4.pecan/4.accessibility/_dir.yml @@ -0,0 +1 @@ +title: Accessibility diff --git a/content/4.pecan/4.accessibility/keyboard-shortcuts.md b/content/4.pecan/4.accessibility/keyboard-shortcuts.md new file mode 100644 index 0000000..0b11a2a --- /dev/null +++ b/content/4.pecan/4.accessibility/keyboard-shortcuts.md @@ -0,0 +1,21 @@ +--- +title: Keyboard Shortcuts +navigation: + title: Keyboard Shortcuts +--- + +Keyboard shortcuts are available to help you navigate and perform actions faster on PeCan. + +## About keyboard shortcuts + +You can use these keyboard shortcuts to navigate and perform actions across PeCan without using your mouse. + +The following sections list the available keyboard shortcuts organized by where you can use them on PeCan. + +## Site-wide shortcuts + +| Keyboard shortcut | Description | +|--------------------------------------------------------------------------------------------|---------------------------------------| +| Cmd + K (Mac) or
Ctrl + K (Windows/Linux) | Opens the search bar | +| O | Opens the diagnosis search interface | +| Esc | Closes the diagnosis search interface | From 42d61bb500d1ae08cc5acf09f1bb64ec70a3583d Mon Sep 17 00:00:00 2001 From: stjudecloud-cloudy Date: Wed, 28 Jan 2026 13:07:13 -0600 Subject: [PATCH 2/5] ci: :rocket: creates preview environment for pr133 [skip ci] --- deployment/preview/pr133/app.yaml | 88 +++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 deployment/preview/pr133/app.yaml diff --git a/deployment/preview/pr133/app.yaml b/deployment/preview/pr133/app.yaml new file mode 100644 index 0000000..4872d08 --- /dev/null +++ b/deployment/preview/pr133/app.yaml @@ -0,0 +1,88 @@ +--- +apiVersion: helm.toolkit.fluxcd.io/v2beta1 +kind: HelmRelease +metadata: + name: docs + namespace: docs-pr133 +spec: + interval: 30m + chart: + spec: + chart: generic + version: 1.1.x + sourceRef: + kind: HelmRepository + name: stjudecloud + namespace: flux-system + interval: 1h + values: + nameOverride: docs + extraDeploy: + - | + apiVersion: v1 + kind: Service + metadata: + name: {{ template "common.names.fullname" . }}-oauth-bridge + labels: {{- include "common.labels.standard" . | nindent 4 }} + {{- if .Values.commonLabels }} + {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }} + {{- end }} + {{- if .Values.commonAnnotations }} + annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} + {{- end }} + spec: + type: ExternalName + externalName: oauth2-proxy.oauth2-proxy + - | + --- + apiVersion: networking.k8s.io/v1 + kind: Ingress + metadata: + name: {{ .Release.Name }}-oauth + spec: + ingressClassName: nginx + rules: + - host: {{ .Values.ingress.hostname }} + http: + paths: + - backend: + service: + name: {{ template "common.names.fullname" . }}-oauth-bridge + port: + number: 80 + path: /oauth2 + pathType: ImplementationSpecific + tls: + - hosts: + - {{ .Values.ingress.hostname }} + secretName: {{ .Values.ingress.hostname }}-tls + image: + repository: stjudecloud/docs + tag: latest # {"$imagepolicy": "flux-system:docs-pr133:tag"} + podAnnotations: + linkerd.io/inject: enabled + config.linkerd.io/proxy-cpu-request: 20m + containerPorts: + http: 3000 + service: + ports: + - name: http + protocol: TCP + port: 3000 + targetPort: http + ingress: + enabled: true + hostname: docs-pr133.staging.stjude.cloud + path: / + annotations: + cert-manager.io/cluster-issuer: letsencrypt-prod + linkerd.io/inject: ingress + nginx.ingress.kubernetes.io/auth-signin: https://$host/oauth2/start?rd=$escaped_request_uri + nginx.ingress.kubernetes.io/auth-url: https://$host/oauth2/auth + nginx.ingress.kubernetes.io/service-upstream: "true" + nginx.ingress.kubernetes.io/enable-modsecurity: "true" + nginx.ingress.kubernetes.io/enable-owasp-core-rules: "true" + tls: + enabled: true + datadog: + enabled: false From b52d89fb8d9f56ab9cf44ee1f9c68834f4a15c22 Mon Sep 17 00:00:00 2001 From: stjudecloud-cloudy Date: Wed, 28 Jan 2026 19:09:20 +0000 Subject: [PATCH 3/5] chore: :rocket: released stjudecloud.azurecr.io/stjudecloud/docs:pr133-c99a060-241 to pr133 [skip ci] --- deployment/preview/pr133/app.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/deployment/preview/pr133/app.yaml b/deployment/preview/pr133/app.yaml index 4872d08..a201919 100644 --- a/deployment/preview/pr133/app.yaml +++ b/deployment/preview/pr133/app.yaml @@ -1,4 +1,3 @@ ---- apiVersion: helm.toolkit.fluxcd.io/v2beta1 kind: HelmRelease metadata: @@ -58,7 +57,7 @@ spec: secretName: {{ .Values.ingress.hostname }}-tls image: repository: stjudecloud/docs - tag: latest # {"$imagepolicy": "flux-system:docs-pr133:tag"} + tag: pr133-c99a060-241 # {"$imagepolicy": "flux-system:docs-pr133:tag"} podAnnotations: linkerd.io/inject: enabled config.linkerd.io/proxy-cpu-request: 20m From 393ff4ad0d872ce6aeb2bcc410aa83d57bbfb182 Mon Sep 17 00:00:00 2001 From: Pranaya Shrestha Date: Wed, 28 Jan 2026 10:45:56 -0600 Subject: [PATCH 4/5] feat: add doc for keyboard shortcuts --- content/4.pecan/4.accessibility/keyboard-shortcuts.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/content/4.pecan/4.accessibility/keyboard-shortcuts.md b/content/4.pecan/4.accessibility/keyboard-shortcuts.md index 0b11a2a..451ff2f 100644 --- a/content/4.pecan/4.accessibility/keyboard-shortcuts.md +++ b/content/4.pecan/4.accessibility/keyboard-shortcuts.md @@ -4,14 +4,10 @@ navigation: title: Keyboard Shortcuts --- -Keyboard shortcuts are available to help you navigate and perform actions faster on PeCan. - ## About keyboard shortcuts You can use these keyboard shortcuts to navigate and perform actions across PeCan without using your mouse. -The following sections list the available keyboard shortcuts organized by where you can use them on PeCan. - ## Site-wide shortcuts | Keyboard shortcut | Description | From e9d67403dbb3a71931dc9aaba2995daf83677a4e Mon Sep 17 00:00:00 2001 From: stjudecloud-cloudy Date: Wed, 28 Jan 2026 20:30:33 +0000 Subject: [PATCH 5/5] chore: :rocket: released stjudecloud.azurecr.io/stjudecloud/docs:pr133-9cac7f6-242 to pr133 [skip ci] --- deployment/preview/pr133/app.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/preview/pr133/app.yaml b/deployment/preview/pr133/app.yaml index a201919..bac89d1 100644 --- a/deployment/preview/pr133/app.yaml +++ b/deployment/preview/pr133/app.yaml @@ -57,7 +57,7 @@ spec: secretName: {{ .Values.ingress.hostname }}-tls image: repository: stjudecloud/docs - tag: pr133-c99a060-241 # {"$imagepolicy": "flux-system:docs-pr133:tag"} + tag: pr133-9cac7f6-242 # {"$imagepolicy": "flux-system:docs-pr133:tag"} podAnnotations: linkerd.io/inject: enabled config.linkerd.io/proxy-cpu-request: 20m