-
Notifications
You must be signed in to change notification settings - Fork 1
feat: add pecan release notes #144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
ef5ea2b
feat: add pecan release notes
mkirk111 38452a5
ci: :rocket: creates preview environment for pr144 [skip ci]
stjudecloud-cloudy 9587b03
chore: :rocket: released stjudecloud.azurecr.io/stjudecloud/docs:pr1…
7aadad8
revise: spelling
mkirk111 a82a7b3
chore: :rocket: released stjudecloud.azurecr.io/stjudecloud/docs:pr1…
62f29aa
Add PeCan press release design document
mkirk111 af8781a
Add PeCan press release draft
mkirk111 99e29c4
revise: format updates
mkirk111 80df468
ci: :fire: removes preview environment for pr144
stjudecloud-cloudy d56beb1
revise: remove plans and fix link, file name
mkirk111 19fa6e5
feat: add release notes intro, video, and expanded descriptions
claymcleod File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 @@ | ||
| title: Release Notes | ||
This file contains hidden or 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,19 @@ | ||
| --- | ||
| title: PeCan Release Notes | ||
| navigation: | ||
| title: PeCan Release Notes | ||
|
mkirk111 marked this conversation as resolved.
Outdated
|
||
| --- | ||
|
|
||
| ## February 2026 | ||
|
|
||
| ### New Features | ||
|
|
||
| - **Redesigned Navigation** — New left-side navigation panel for easy navigation between data facets and access to the [Diagnosis Search](../../2.cc4k/1.index.md). | ||
|
mkirk111 marked this conversation as resolved.
Outdated
|
||
| - **Help Guides** - Navigation to our PeCan Help Guide documentation is now accessible on the new left-side navigation panel. | ||
|
mkirk111 marked this conversation as resolved.
Outdated
|
||
| - **Keyboard Controls** — Updated [keyboard controls](content/4.pecan/4.accessibility/keyboard-shortcuts.md) to quickly access PeCan's Diagnosis Search. | ||
|
mkirk111 marked this conversation as resolved.
Outdated
|
||
|
|
||
| ### Improvements | ||
|
|
||
| - Updated position of the Diagnosis Search on the PeCan Homepage providing easier access. | ||
|
|
||
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ||
|
mkirk111 marked this conversation as resolved.
Outdated
|
||
This file contains hidden or 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,87 @@ | ||
| apiVersion: helm.toolkit.fluxcd.io/v2beta1 | ||
| kind: HelmRelease | ||
| metadata: | ||
| name: docs | ||
| namespace: docs-pr144 | ||
| 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: pr144-d574fb2-264 # {"$imagepolicy": "flux-system:docs-pr144: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-pr144.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 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.