-
Notifications
You must be signed in to change notification settings - Fork 2
Conversation
@@ -1,3 +1,3 @@ | |||
package cli | |||
//go:generate bash ./generate_version.sh | |||
var PaddleVersion = "0.3.1" | |||
var PaddleVersion = "0.4.7" |
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.
why such a jump?
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 question! To test it I use goreleaser
(since Jenkins will automatically download the latest release on Github), so every tested version results in a bump. Not ideal, but works. Ideally we would change it to support pre-releases.
@@ -106,8 +108,14 @@ func Watch(ctx context.Context, c kubernetes.Interface, watchPod *v1.Pod) (<-cha | |||
select { | |||
case <-time.After(watchPollInterval): | |||
pod, err := c.CoreV1().Pods(watchPod.Namespace).Get(watchPod.Name, metav1.GetOptions{}) | |||
if err != nil { | |||
if pod != nil { |
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.
this is the recent pod status bug we encountered?
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.
Yup! You're right, it should have lived in a different PR but here it is :)
Changes to add to the README are piling up. :) |
Who needs a README when you have |
ah, right! |
Allow passing secrets to the pod file with
--secret
option