From aaf1083097ee9045a1e55a0d771baad2ab2634ae Mon Sep 17 00:00:00 2001 From: Manjunath Kumatagi Date: Tue, 20 Feb 2024 18:41:43 +0530 Subject: [PATCH 1/2] Update kustomization.yaml with ppc64le images --- manifests/base/kustomization.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/base/kustomization.yaml b/manifests/base/kustomization.yaml index 52e4f1a016..7ece9e12db 100644 --- a/manifests/base/kustomization.yaml +++ b/manifests/base/kustomization.yaml @@ -22,8 +22,8 @@ resources: - fetch-accelerators.rbac.yaml images: - name: odh-dashboard - newName: quay.io/opendatahub/odh-dashboard + newName: quay.io/powercloud/odh-dashboard newTag: main - name: oauth-proxy newName: registry.redhat.io/openshift4/ose-oauth-proxy - digest: sha256:ab112105ac37352a2a4916a39d6736f5db6ab4c29bad4467de8d613e80e9bb33 + digest: sha256:74e8ca0bd81cae7e02fcf57e460beeb1ac6c03cc708bb7a729d6c66ab1392f46 From 0a75158ee17f37c1e91a01fa172941d4affb53d6 Mon Sep 17 00:00:00 2001 From: puneetsharma21 Date: Tue, 13 Aug 2024 03:11:06 -0400 Subject: [PATCH 2/2] dummy file added --- backend/src/example.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 backend/src/example.ts diff --git a/backend/src/example.ts b/backend/src/example.ts new file mode 100644 index 0000000000..04687321c4 --- /dev/null +++ b/backend/src/example.ts @@ -0,0 +1,10 @@ +// example.ts + +// Function to add two numbers +function add(a: number, b: number): number { + return a + b; +} + +// Using the function +const result = add(5, 3); +console.log(`The sum is: ${result}`);