Skip to content
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

bug: bump kurlkinds to 1.4.7 and fixes invalid hostpreflight operation #4792

Conversation

ricardomaraschini
Copy link
Contributor

What this PR does / why we need it:

This PR bumps kurlkinds to v1.4.7 and adapts the code to comply with the new HostPreflight type. The new HostPreflight type does not have an embedded ObjectMeta as this was causing some issues.

@ricardomaraschini ricardomaraschini added type::bug Something isn't working bug::normal labels Aug 30, 2023
@ricardomaraschini ricardomaraschini requested a review from a team as a code owner August 30, 2023 16:11
this PR bumps kurlkinds to v1.4.7 and adapts the code to comply with the
new hostpreflight type.
@ricardomaraschini ricardomaraschini force-pushed the ricardomaraschini/sc-87845/installers-cluster-kurl-sh-crd-has-decode branch from 2dc2cf7 to a1c543c Compare August 30, 2023 16:19
@ricardomaraschini ricardomaraschini merged commit 84c3738 into main Aug 31, 2023
@ricardomaraschini ricardomaraschini deleted the ricardomaraschini/sc-87845/installers-cluster-kurl-sh-crd-has-decode branch August 31, 2023 07:10
ricardomaraschini added a commit that referenced this pull request Sep 1, 2023
current stable kurl version does not work when we attempt to install and
patch the installer providing a custom hostpreflight. this is what happens
when we have attempt to patch the installer `installer-spec-file` flag:

```
$ cat patch.yaml
apiVersion: cluster.kurl.sh/v1beta1
kind: Installer
metadata:
  name: installer
spec:
  kurl:
    hostPreflights:
      apiVersion: troubleshoot.sh/v1beta2
      kind: HostPreflight
      spec:
        collectors:
        - http:
            collectorName: Can Access Replicated API
            get:
              url: https://replicated.app
        analyzers:
        - http:
            checkName: Can Access Replicated API
            collectorName: Can Access Replicated API
            outcomes:
            - warn:
                when: "error"
                message: Error connecting to https://replicated.app
            - pass:
                when: "statusCode == 200"
                message: Connected to https://replicated.app
            - warn:
                message: "Unexpected response"
$ curl https://kurl.sh/29035ee | sudo bash -s installer-spec-file=./patch.yaml
<redacted>
✔ Cluster Initialized
secret/kurl-troubleshoot-spec created
customresourcedefinition.apiextensions.k8s.io/installers.cluster.kurl.sh created
installer.cluster.kurl.sh/29035ee created

Error from server (BadRequest): error when creating "/tmp/kurl-bin-utils/specs/merged.yaml": Installer in version "v1beta1" cannot be handled as a Installer: strict decoding error: unknown field "spec.kurl.hostPreflights.metadata.creationTimestamp"
spent 1m attempting to run "kubectl apply -f /tmp/kurl-bin-utils/specs/merged.yaml" without success
```

this problem has been fixed by #4792
and this pr adds some tests to validate that:

1) we can install providing a custom host preflight.
2) once the cluster has been installed we can upgrade using a custom
   host preflight.
ricardomaraschini added a commit that referenced this pull request Sep 1, 2023
current stable kurl version does not work when we attempt to install and
patch the installer providing a custom hostpreflight. this is what happens
when we have attempt to patch the installer `installer-spec-file` flag:

```
$ cat patch.yaml
apiVersion: cluster.kurl.sh/v1beta1
kind: Installer
metadata:
  name: installer
spec:
  kurl:
    hostPreflights:
      apiVersion: troubleshoot.sh/v1beta2
      kind: HostPreflight
      spec:
        collectors:
        - http:
            collectorName: Can Access Replicated API
            get:
              url: https://replicated.app
        analyzers:
        - http:
            checkName: Can Access Replicated API
            collectorName: Can Access Replicated API
            outcomes:
            - warn:
                when: "error"
                message: Error connecting to https://replicated.app
            - pass:
                when: "statusCode == 200"
                message: Connected to https://replicated.app
            - warn:
                message: "Unexpected response"
$ curl https://kurl.sh/29035ee | sudo bash -s installer-spec-file=./patch.yaml
<redacted>
✔ Cluster Initialized
secret/kurl-troubleshoot-spec created
customresourcedefinition.apiextensions.k8s.io/installers.cluster.kurl.sh created
installer.cluster.kurl.sh/29035ee created

Error from server (BadRequest): error when creating "/tmp/kurl-bin-utils/specs/merged.yaml": Installer in version "v1beta1" cannot be handled as a Installer: strict decoding error: unknown field "spec.kurl.hostPreflights.metadata.creationTimestamp"
spent 1m attempting to run "kubectl apply -f /tmp/kurl-bin-utils/specs/merged.yaml" without success
```

this problem has been fixed by #4792
and this pr adds some tests to validate that:

1) we can install providing a custom host preflight.
2) once the cluster has been installed we can upgrade using a custom
   host preflight.
ricardomaraschini added a commit that referenced this pull request Sep 1, 2023
current stable kurl version does not work when we attempt to install and
patch the installer providing a custom hostpreflight. this is what happens
when we have attempt to patch the installer `installer-spec-file` flag:

```
$ cat patch.yaml
apiVersion: cluster.kurl.sh/v1beta1
kind: Installer
metadata:
  name: installer
spec:
  kurl:
    hostPreflights:
      apiVersion: troubleshoot.sh/v1beta2
      kind: HostPreflight
      spec:
        collectors:
        - http:
            collectorName: Can Access Replicated API
            get:
              url: https://replicated.app
        analyzers:
        - http:
            checkName: Can Access Replicated API
            collectorName: Can Access Replicated API
            outcomes:
            - warn:
                when: "error"
                message: Error connecting to https://replicated.app
            - pass:
                when: "statusCode == 200"
                message: Connected to https://replicated.app
            - warn:
                message: "Unexpected response"
$ curl https://kurl.sh/29035ee | sudo bash -s installer-spec-file=./patch.yaml
<redacted>
✔ Cluster Initialized
secret/kurl-troubleshoot-spec created
customresourcedefinition.apiextensions.k8s.io/installers.cluster.kurl.sh created
installer.cluster.kurl.sh/29035ee created

Error from server (BadRequest): error when creating "/tmp/kurl-bin-utils/specs/merged.yaml": Installer in version "v1beta1" cannot be handled as a Installer: strict decoding error: unknown field "spec.kurl.hostPreflights.metadata.creationTimestamp"
spent 1m attempting to run "kubectl apply -f /tmp/kurl-bin-utils/specs/merged.yaml" without success
```

this problem has been fixed by #4792
and this pr adds some tests to validate that:

1) we can install providing a custom host preflight.
2) once the cluster has been installed we can upgrade using a custom
   host preflight.
ricardomaraschini added a commit that referenced this pull request Sep 1, 2023
current stable kurl version does not work when we attempt to install and
patch the installer providing a custom hostpreflight. this is what happens
when we have attempt to patch the installer `installer-spec-file` flag:

```
$ cat patch.yaml
apiVersion: cluster.kurl.sh/v1beta1
kind: Installer
metadata:
  name: installer
spec:
  kurl:
    hostPreflights:
      apiVersion: troubleshoot.sh/v1beta2
      kind: HostPreflight
      spec:
        collectors:
        - http:
            collectorName: Can Access Replicated API
            get:
              url: https://replicated.app
        analyzers:
        - http:
            checkName: Can Access Replicated API
            collectorName: Can Access Replicated API
            outcomes:
            - warn:
                when: "error"
                message: Error connecting to https://replicated.app
            - pass:
                when: "statusCode == 200"
                message: Connected to https://replicated.app
            - warn:
                message: "Unexpected response"
$ curl https://kurl.sh/29035ee | sudo bash -s installer-spec-file=./patch.yaml
<redacted>
✔ Cluster Initialized
secret/kurl-troubleshoot-spec created
customresourcedefinition.apiextensions.k8s.io/installers.cluster.kurl.sh created
installer.cluster.kurl.sh/29035ee created

Error from server (BadRequest): error when creating "/tmp/kurl-bin-utils/specs/merged.yaml": Installer in version "v1beta1" cannot be handled as a Installer: strict decoding error: unknown field "spec.kurl.hostPreflights.metadata.creationTimestamp"
spent 1m attempting to run "kubectl apply -f /tmp/kurl-bin-utils/specs/merged.yaml" without success
```

this problem has been fixed by #4792
and this pr adds some tests to validate that:

1) we can install providing a custom host preflight.
2) once the cluster has been installed we can upgrade using a custom
   host preflight.
ricardomaraschini added a commit that referenced this pull request Sep 1, 2023
current stable kurl version does not work when we attempt to install and
patch the installer providing a custom hostpreflight. this is what happens
when we have attempt to patch the installer `installer-spec-file` flag:

```
$ cat patch.yaml
apiVersion: cluster.kurl.sh/v1beta1
kind: Installer
metadata:
  name: installer
spec:
  kurl:
    hostPreflights:
      apiVersion: troubleshoot.sh/v1beta2
      kind: HostPreflight
      spec:
        collectors:
        - http:
            collectorName: Can Access Replicated API
            get:
              url: https://replicated.app
        analyzers:
        - http:
            checkName: Can Access Replicated API
            collectorName: Can Access Replicated API
            outcomes:
            - warn:
                when: "error"
                message: Error connecting to https://replicated.app
            - pass:
                when: "statusCode == 200"
                message: Connected to https://replicated.app
            - warn:
                message: "Unexpected response"
$ curl https://kurl.sh/29035ee | sudo bash -s installer-spec-file=./patch.yaml
<redacted>
✔ Cluster Initialized
secret/kurl-troubleshoot-spec created
customresourcedefinition.apiextensions.k8s.io/installers.cluster.kurl.sh created
installer.cluster.kurl.sh/29035ee created

Error from server (BadRequest): error when creating "/tmp/kurl-bin-utils/specs/merged.yaml": Installer in version "v1beta1" cannot be handled as a Installer: strict decoding error: unknown field "spec.kurl.hostPreflights.metadata.creationTimestamp"
spent 1m attempting to run "kubectl apply -f /tmp/kurl-bin-utils/specs/merged.yaml" without success
```

this problem has been fixed by #4792
and this pr adds some tests to validate that:

1) we can install providing a custom host preflight.
2) once the cluster has been installed we can upgrade using a custom
   host preflight.
ricardomaraschini added a commit that referenced this pull request Sep 5, 2023
* chore: adding test for hostpreflight installer merge

current stable kurl version does not work when we attempt to install and
patch the installer providing a custom hostpreflight. this is what happens
when we have attempt to patch the installer `installer-spec-file` flag:

```
$ cat patch.yaml
apiVersion: cluster.kurl.sh/v1beta1
kind: Installer
metadata:
  name: installer
spec:
  kurl:
    hostPreflights:
      apiVersion: troubleshoot.sh/v1beta2
      kind: HostPreflight
      spec:
        collectors:
        - http:
            collectorName: Can Access Replicated API
            get:
              url: https://replicated.app
        analyzers:
        - http:
            checkName: Can Access Replicated API
            collectorName: Can Access Replicated API
            outcomes:
            - warn:
                when: "error"
                message: Error connecting to https://replicated.app
            - pass:
                when: "statusCode == 200"
                message: Connected to https://replicated.app
            - warn:
                message: "Unexpected response"
$ curl https://kurl.sh/29035ee | sudo bash -s installer-spec-file=./patch.yaml
<redacted>
✔ Cluster Initialized
secret/kurl-troubleshoot-spec created
customresourcedefinition.apiextensions.k8s.io/installers.cluster.kurl.sh created
installer.cluster.kurl.sh/29035ee created

Error from server (BadRequest): error when creating "/tmp/kurl-bin-utils/specs/merged.yaml": Installer in version "v1beta1" cannot be handled as a Installer: strict decoding error: unknown field "spec.kurl.hostPreflights.metadata.creationTimestamp"
spent 1m attempting to run "kubectl apply -f /tmp/kurl-bin-utils/specs/merged.yaml" without success
```

this problem has been fixed by #4792
and this pr adds some tests to validate that:

1) we can install providing a custom host preflight.
2) once the cluster has been installed we can upgrade using a custom
   host preflight.

* chore: adding grep to validate test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug::normal type::bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants