Skip to content

Commit

Permalink
Merge pull request #154 from lokanandaprabhu/feature/SRVKP-5774
Browse files Browse the repository at this point in the history
SRVKP-5774: Add support for v1 api support in Pipeline dashboard
  • Loading branch information
openshift-merge-bot[bot] authored Sep 11, 2024
2 parents 448f079 + adc4ed6 commit c416771
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/utils/tekton-results.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export type ResultRecord = {
updateTime: string;
etag: string;
data: {
// tekton.dev/v1beta1.PipelineRun | tekton.dev/v1beta1.TaskRun | results.tekton.dev/v1alpha2.Log
// tekton.dev/v1.PipelineRun | tekton.dev/v1.TaskRun | results.tekton.dev/v1alpha2.Log
type: string;
value: string;
};
Expand Down Expand Up @@ -122,8 +122,8 @@ export const NEQ = (left: string, right: string) =>
EXP(left, `"${right}"`, '!=');

export enum DataType {
PipelineRun = 'tekton.dev/v1beta1.PipelineRun',
TaskRun = 'tekton.dev/v1beta1.TaskRun',
PipelineRun = 'tekton.dev/v1.PipelineRun',
TaskRun = 'tekton.dev/v1.TaskRun',
Log = 'results.tekton.dev/v1alpha2.Log',
}

Expand Down

0 comments on commit c416771

Please sign in to comment.