-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat(release): add polling status for airgap build release #53
Conversation
* throw error when timedout
example added, e.g. to run
|
I have removed |
Test with my own channel, works fine.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should go into channel.ts, as the airgap bundle is created on promotion of a release to a channel. At least that is when I think it happens.
src/releases.ts
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should the changes be in channels.ts, as this is about a release promoted to a channel and not an "Application" release.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea. I have moved the function back to channels.ts
src/releases.ts
Outdated
@@ -11,6 +11,7 @@ import { zonedTimeToUtc } from "date-fns-tz"; | |||
export interface Release { | |||
sequence: string; | |||
charts?: ReleaseChart[]; | |||
airgapBuildStatus?: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this might become confusing? The Release sequence is not the same as the Channel release sequence?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a problem. Let me think a way to reduce the confusion.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have added channelSequence to avoid the confusing part
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think is correct. A release can be promoted to multiple channels, and each channel maintains its own sequence numbers
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
channelSequence is misunderstanding. I have renamed it to promotedChannelSequence
.
Yes, release can be promoted to multiple channels. But in getAirgapBuildRelease
function, we have filtered by channel ID. In this case, the promotedChannelSequence will be only one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For example,
when we curl
https://api.replicated.com/vendor/v3/app/2S2KBYYp3fKkP42pb3eJYIYJNYv/channel/2pusnQ3dbpDq0SEVEE8LCeUCCwC/releases
we will get
{
"releases": [
{
"sequence": 37,
"channelId": "2pusnQ3dbpDq0SEVEE8LCeUCCwC",
"channelName": "Unstable",
"channelIcon": "",
"channelSequence": 10,
"semver": "0.2.5",
"isRequired": false,
}
}
That is where channelSequence
comes from "channelSequence": 10,
But it is confusing. Do you have suggestions, or should we make it like
export interface Release {
sequence: string;
channels?: Channel[];
charts?: ReleaseChart[];
airgapBuildStatus?: string;
}
to make it same as current api
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it should be in channels.ts
and not in releases.ts
.
The class Channel
should probably contain an array of ChannelReleases
, and ChannelRelease
should be a new class in channel.ts
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it should be in channels.ts and not in releases.ts.
The class Channel should probably contain an array of ChannelReleases, and ChannelRelease should be a new class in channel.ts
fwiw - this sounds right to me. A "channel release" is an object that belongs to "channel". It would also mirror what we've done in places like replicated cli -
which is then used in the larger channel obj:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @jdewinne and @pandemicsyn! ChannelRelease
makes more sense. I have added it into channel.ts
We will get
This new function is helping to poll the airgap build status.
npm run poll-airgap --
with real channelsc-120957