From c0160deba02f2040b48ca64881cbbf3354c42706 Mon Sep 17 00:00:00 2001 From: Pranaya Shrestha Date: Wed, 28 Jan 2026 10:45:56 -0600 Subject: [PATCH 1/6] 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 a992ca2ad08d15da541e880980a484d8af6af157 Mon Sep 17 00:00:00 2001 From: stjudecloud-cloudy Date: Wed, 28 Jan 2026 13:07:13 -0600 Subject: [PATCH 2/6] 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 3465c61258817338545a8557d0b6accbd4e497ca Mon Sep 17 00:00:00 2001 From: stjudecloud-cloudy Date: Wed, 28 Jan 2026 19:09:20 +0000 Subject: [PATCH 3/6] 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 5c38fdc0a6b7bd42fb75b69424d3d7dd11589350 Mon Sep 17 00:00:00 2001 From: Pranaya Shrestha Date: Wed, 28 Jan 2026 10:45:56 -0600 Subject: [PATCH 4/6] 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 2e4caf008e4ee4c7e064b17aaac3de4ddd6768b6 Mon Sep 17 00:00:00 2001 From: stjudecloud-cloudy Date: Wed, 28 Jan 2026 20:30:33 +0000 Subject: [PATCH 5/6] 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 From 29b548f3dafbd964b3bbe6c1c9579fdb4a3e275e Mon Sep 17 00:00:00 2001 From: stjudecloud-cloudy Date: Tue, 17 Feb 2026 11:24:53 -0600 Subject: [PATCH 6/6] ci: :fire: removes preview environment for pr133 --- deployment/preview/pr133/app.yaml | 87 ------------------------------- 1 file changed, 87 deletions(-) delete mode 100644 deployment/preview/pr133/app.yaml diff --git a/deployment/preview/pr133/app.yaml b/deployment/preview/pr133/app.yaml deleted file mode 100644 index bac89d1..0000000 --- a/deployment/preview/pr133/app.yaml +++ /dev/null @@ -1,87 +0,0 @@ -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: pr133-9cac7f6-242 # {"$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