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

MGMT-8356: Deploy assisted-service and its components to kind cluster instead of minikube for local subsystem testing #6385

Merged
merged 1 commit into from
Jun 18, 2024

Conversation

danmanor
Copy link
Contributor

@danmanor danmanor commented May 30, 2024

Overview

This PR is is about using kind cluster using podman provider to deploy assisted-service and its components for local subsystem tests.

Goals

Using kind instead of Minikube for local k8s development can offer several advantages:

  • Speed and Simplicity: kind starts faster than Minikube because it runs k8s cluster components as podman containers. This can lead to quicker setup and teardown times.
  • Less Resource-Intensive: Since kind runs within podman, it tends to use less system resources compared to Minikube, which creates a new VM for the k8s cluster. This is a big advantage for running subsystem tests on a PC.
  • Avoid using KVM: KVM was causing several issues in our deployments.

Major Changes

  • Network: With Minikube, components we automatically exposed outside the cluster when their LoadBalancer Service resource was applied (by getting External IP). we utilized it to get traffic inside the cluster into the components. this is not the case with kind, so we expose static nodePort for each service and configure kind to forward the traffic from localhost:target-port to cluster:nodePort
  • Local Registry: With Minikube, we were using local registry to store assisted-service image after it was built, for the pod to pull from later. Configuring local registry with kind using podman is not supported and redundant. Instead, I loaded the build image into kind for local use

List all the issues related to this PR

  • New Feature
  • Enhancement
  • Bug fix
  • Tests
  • Documentation
  • CI/CD

What environments does this code impact?

  • Automation (CI, tools, etc)
  • Cloud
  • Operator Managed Deployments
  • None

How was this code tested?

  • assisted-test-infra environment
  • dev-scripts environment
  • Reviewer's test appreciated
  • Waiting for CI to do a full test run
  • Manual (Elaborate on how it was tested)
  • No tests needed

Checklist

  • Title and description added to both, commit and PR.
  • Relevant issues have been associated (see CONTRIBUTING guide)
  • This change does not require a documentation update (docstring, docs, README, etc)
  • Does this change include unit-tests (note that code changes require unit-tests)

Reviewers Checklist

  • Are the title and description (in both PR and commit) meaningful and clear?
  • Is there a bug required (and linked) for this change?
  • Should this PR be backported?

@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label May 30, 2024
@openshift-ci-robot
Copy link

@danmanor: This pull request explicitly references no jira issue.

In response to this:

List all the issues related to this PR

  • New Feature
  • Enhancement
  • Bug fix
  • Tests
  • Documentation
  • CI/CD

What environments does this code impact?

  • Automation (CI, tools, etc)
  • Cloud
  • Operator Managed Deployments
  • None

How was this code tested?

  • assisted-test-infra environment
  • dev-scripts environment
  • Reviewer's test appreciated
  • Waiting for CI to do a full test run
  • Manual (Elaborate on how it was tested)
  • No tests needed

Checklist

  • Title and description added to both, commit and PR.
  • Relevant issues have been associated (see CONTRIBUTING guide)
  • This change does not require a documentation update (docstring, docs, README, etc)
  • Does this change include unit-tests (note that code changes require unit-tests)

Reviewers Checklist

  • Are the title and description (in both PR and commit) meaningful and clear?
  • Is there a bug required (and linked) for this change?
  • Should this PR be backported?

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci openshift-ci bot added do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels May 30, 2024
@openshift-ci openshift-ci bot requested review from jhernand and omertuc May 30, 2024 14:00
@danmanor danmanor changed the title WIP: NO-ISSUE: Add kind subsystem WIP: NO-ISSUE: Use kind for subsystem tests instead of minikube May 30, 2024
@openshift-ci openshift-ci bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label May 30, 2024
@danmanor danmanor changed the title WIP: NO-ISSUE: Use kind for subsystem tests instead of minikube WIP: NO-ISSUE: Use kind for local subsystem tests instead of minikube May 30, 2024
@danmanor danmanor changed the title WIP: NO-ISSUE: Use kind for local subsystem tests instead of minikube MGMT-8356: Deploy assisted-service and its components to kind cluster instead of minikube for local subsystem testing May 30, 2024
@openshift-ci-robot
Copy link

openshift-ci-robot commented May 30, 2024

@danmanor: This pull request references MGMT-8356 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the task to target the "4.17.0" version, but no target version was set.

In response to this:

List all the issues related to this PR

  • New Feature
  • Enhancement
  • Bug fix
  • Tests
  • Documentation
  • CI/CD

What environments does this code impact?

  • Automation (CI, tools, etc)
  • Cloud
  • Operator Managed Deployments
  • None

How was this code tested?

  • assisted-test-infra environment
  • dev-scripts environment
  • Reviewer's test appreciated
  • Waiting for CI to do a full test run
  • Manual (Elaborate on how it was tested)
  • No tests needed

Checklist

  • Title and description added to both, commit and PR.
  • Relevant issues have been associated (see CONTRIBUTING guide)
  • This change does not require a documentation update (docstring, docs, README, etc)
  • Does this change include unit-tests (note that code changes require unit-tests)

Reviewers Checklist

  • Are the title and description (in both PR and commit) meaningful and clear?
  • Is there a bug required (and linked) for this change?
  • Should this PR be backported?

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci openshift-ci bot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label May 30, 2024
@danmanor danmanor changed the title MGMT-8356: Deploy assisted-service and its components to kind cluster instead of minikube for local subsystem testing WIP: MGMT-8356: Deploy assisted-service and its components to kind cluster instead of minikube for local subsystem testing May 30, 2024
@openshift-ci openshift-ci bot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label May 30, 2024
@openshift-ci-robot
Copy link

openshift-ci-robot commented May 30, 2024

@danmanor: This pull request references MGMT-8356 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the task to target the "4.17.0" version, but no target version was set.

In response to this:

Overview

This PR is is about using kind cluster using podman provider to deploy assisted-service and its components for local subsystem tests.

Goals

Using kind instead of Minikube for local k8s development can offer several advantages:

  • Speed and Simplicity: kind starts faster than Minikube because it runs k8s cluster components as podman containers. This can lead to quicker setup and teardown times.
  • Less Resource-Intensive: Since kind runs within podman, it tends to use less system resources compared to Minikube, which creates a new VM for the k8s cluster. This is a big advantage for running subsystem tests on a PC.
  • Avoid using KVM: KVM was causing several issues in our deployments.

Major Chages

List all the issues related to this PR

  • New Feature
  • Enhancement
  • Bug fix
  • Tests
  • Documentation
  • CI/CD

What environments does this code impact?

  • Automation (CI, tools, etc)
  • Cloud
  • Operator Managed Deployments
  • None

How was this code tested?

  • assisted-test-infra environment
  • dev-scripts environment
  • Reviewer's test appreciated
  • Waiting for CI to do a full test run
  • Manual (Elaborate on how it was tested)
  • No tests needed

Checklist

  • Title and description added to both, commit and PR.
  • Relevant issues have been associated (see CONTRIBUTING guide)
  • This change does not require a documentation update (docstring, docs, README, etc)
  • Does this change include unit-tests (note that code changes require unit-tests)

Reviewers Checklist

  • Are the title and description (in both PR and commit) meaningful and clear?
  • Is there a bug required (and linked) for this change?
  • Should this PR be backported?

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci-robot
Copy link

openshift-ci-robot commented May 30, 2024

@danmanor: This pull request references MGMT-8356 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the task to target the "4.17.0" version, but no target version was set.

In response to this:

Overview

This PR is is about using kind cluster using podman provider to deploy assisted-service and its components for local subsystem tests.

Goals

Using kind instead of Minikube for local k8s development can offer several advantages:

  • Speed and Simplicity: kind starts faster than Minikube because it runs k8s cluster components as podman containers. This can lead to quicker setup and teardown times.
  • Less Resource-Intensive: Since kind runs within podman, it tends to use less system resources compared to Minikube, which creates a new VM for the k8s cluster. This is a big advantage for running subsystem tests on a PC.
  • Avoid using KVM: KVM was causing several issues in our deployments.

Major Changes

List all the issues related to this PR

  • New Feature
  • Enhancement
  • Bug fix
  • Tests
  • Documentation
  • CI/CD

What environments does this code impact?

  • Automation (CI, tools, etc)
  • Cloud
  • Operator Managed Deployments
  • None

How was this code tested?

  • assisted-test-infra environment
  • dev-scripts environment
  • Reviewer's test appreciated
  • Waiting for CI to do a full test run
  • Manual (Elaborate on how it was tested)
  • No tests needed

Checklist

  • Title and description added to both, commit and PR.
  • Relevant issues have been associated (see CONTRIBUTING guide)
  • This change does not require a documentation update (docstring, docs, README, etc)
  • Does this change include unit-tests (note that code changes require unit-tests)

Reviewers Checklist

  • Are the title and description (in both PR and commit) meaningful and clear?
  • Is there a bug required (and linked) for this change?
  • Should this PR be backported?

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

Copy link

codecov bot commented May 30, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 68.45%. Comparing base (f961a0d) to head (ab4e574).
Report is 12 commits behind head on master.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##           master    #6385      +/-   ##
==========================================
+ Coverage   68.43%   68.45%   +0.01%     
==========================================
  Files         246      247       +1     
  Lines       36149    36230      +81     
==========================================
+ Hits        24740    24800      +60     
- Misses       9221     9232      +11     
- Partials     2188     2198      +10     

see 10 files with indirect coverage changes

@openshift-ci-robot
Copy link

openshift-ci-robot commented May 30, 2024

@danmanor: This pull request references MGMT-8356 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the task to target the "4.17.0" version, but no target version was set.

In response to this:

Overview

This PR is is about using kind cluster using podman provider to deploy assisted-service and its components for local subsystem tests.

Goals

Using kind instead of Minikube for local k8s development can offer several advantages:

  • Speed and Simplicity: kind starts faster than Minikube because it runs k8s cluster components as podman containers. This can lead to quicker setup and teardown times.
  • Less Resource-Intensive: Since kind runs within podman, it tends to use less system resources compared to Minikube, which creates a new VM for the k8s cluster. This is a big advantage for running subsystem tests on a PC.
  • Avoid using KVM: KVM was causing several issues in our deployments.

Major Changes

With Minikube, components we automatically exposed outside the cluster when their LoadBalancer Service resource was applied (by getting External IP). we utilized it to get traffic inside the cluster into the components. this is not the case with kind, so we forward traffic differently - we use contour (https://projectcontour.io/) Ingress controller and Ingress resources to forward traffic from the hostname:80 to the application's services. We also expose port 80 in kind to get the traffic into envoy. This solves the issue in a good way for all components but postgres, which requires a TCP connection which contour can't provide. Therefore, I exposed port 5432as well and forward this traffic toNodePort 30000 (postgresserviceNodePort`).

List all the issues related to this PR

  • New Feature
  • Enhancement
  • Bug fix
  • Tests
  • Documentation
  • CI/CD

What environments does this code impact?

  • Automation (CI, tools, etc)
  • Cloud
  • Operator Managed Deployments
  • None

How was this code tested?

  • assisted-test-infra environment
  • dev-scripts environment
  • Reviewer's test appreciated
  • Waiting for CI to do a full test run
  • Manual (Elaborate on how it was tested)
  • No tests needed

Checklist

  • Title and description added to both, commit and PR.
  • Relevant issues have been associated (see CONTRIBUTING guide)
  • This change does not require a documentation update (docstring, docs, README, etc)
  • Does this change include unit-tests (note that code changes require unit-tests)

Reviewers Checklist

  • Are the title and description (in both PR and commit) meaningful and clear?
  • Is there a bug required (and linked) for this change?
  • Should this PR be backported?

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci-robot
Copy link

openshift-ci-robot commented May 30, 2024

@danmanor: This pull request references MGMT-8356 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the task to target the "4.17.0" version, but no target version was set.

In response to this:

Overview

This PR is is about using kind cluster using podman provider to deploy assisted-service and its components for local subsystem tests.

Goals

Using kind instead of Minikube for local k8s development can offer several advantages:

  • Speed and Simplicity: kind starts faster than Minikube because it runs k8s cluster components as podman containers. This can lead to quicker setup and teardown times.
  • Less Resource-Intensive: Since kind runs within podman, it tends to use less system resources compared to Minikube, which creates a new VM for the k8s cluster. This is a big advantage for running subsystem tests on a PC.
  • Avoid using KVM: KVM was causing several issues in our deployments.

Major Changes

With Minikube, components we automatically exposed outside the cluster when their LoadBalancer Service resource was applied (by getting External IP). we utilized it to get traffic inside the cluster into the components. this is not the case with kind, so we forward traffic differently - we use contour (https://projectcontour.io/) Ingress controller and Ingress resources to forward traffic from the hostname:80 to the application's services. We also expose port 80 in kind to get the traffic into envoy. This solves the issue in a good way for all components but postgres, which requires a TCP connection which contour can't provide. Therefore, I exposed port 5432 as well and forward this traffic to NodePort 30000 (postgres service NodePort).

List all the issues related to this PR

  • New Feature
  • Enhancement
  • Bug fix
  • Tests
  • Documentation
  • CI/CD

What environments does this code impact?

  • Automation (CI, tools, etc)
  • Cloud
  • Operator Managed Deployments
  • None

How was this code tested?

  • assisted-test-infra environment
  • dev-scripts environment
  • Reviewer's test appreciated
  • Waiting for CI to do a full test run
  • Manual (Elaborate on how it was tested)
  • No tests needed

Checklist

  • Title and description added to both, commit and PR.
  • Relevant issues have been associated (see CONTRIBUTING guide)
  • This change does not require a documentation update (docstring, docs, README, etc)
  • Does this change include unit-tests (note that code changes require unit-tests)

Reviewers Checklist

  • Are the title and description (in both PR and commit) meaningful and clear?
  • Is there a bug required (and linked) for this change?
  • Should this PR be backported?

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@danmanor
Copy link
Contributor Author

/cc @rccrdpccl

@openshift-ci openshift-ci bot requested a review from rccrdpccl May 30, 2024 14:44
@openshift-ci-robot
Copy link

openshift-ci-robot commented May 30, 2024

@danmanor: This pull request references MGMT-8356 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the task to target the "4.17.0" version, but no target version was set.

In response to this:

Overview

This PR is is about using kind cluster using podman provider to deploy assisted-service and its components for local subsystem tests.

Goals

Using kind instead of Minikube for local k8s development can offer several advantages:

  • Speed and Simplicity: kind starts faster than Minikube because it runs k8s cluster components as podman containers. This can lead to quicker setup and teardown times.
  • Less Resource-Intensive: Since kind runs within podman, it tends to use less system resources compared to Minikube, which creates a new VM for the k8s cluster. This is a big advantage for running subsystem tests on a PC.
  • Avoid using KVM: KVM was causing several issues in our deployments.

Major Changes

With Minikube, components we automatically exposed outside the cluster when their LoadBalancer Service resource was applied (by getting External IP). we utilized it to get traffic inside the cluster into the components. this is not the case with kind, so we forward traffic differently - we use contour (https://projectcontour.io/) Ingress controller and Ingress resources to forward traffic from the hostname:80 to the application's services. We also expose port 80 in kind to get the traffic into envoy. This solves the issue in a good way for all components but postgres, which requires a TCP connection which contour can't provide. Therefore, I exposed port 5432 as well and forward this traffic to NodePort 30000 (postgres service NodePort).

To Do:

  • metrics tests are still failing locally with kind

List all the issues related to this PR

  • New Feature
  • Enhancement
  • Bug fix
  • Tests
  • Documentation
  • CI/CD

What environments does this code impact?

  • Automation (CI, tools, etc)
  • Cloud
  • Operator Managed Deployments
  • None

How was this code tested?

  • assisted-test-infra environment
  • dev-scripts environment
  • Reviewer's test appreciated
  • Waiting for CI to do a full test run
  • Manual (Elaborate on how it was tested)
  • No tests needed

Checklist

  • Title and description added to both, commit and PR.
  • Relevant issues have been associated (see CONTRIBUTING guide)
  • This change does not require a documentation update (docstring, docs, README, etc)
  • Does this change include unit-tests (note that code changes require unit-tests)

Reviewers Checklist

  • Are the title and description (in both PR and commit) meaningful and clear?
  • Is there a bug required (and linked) for this change?
  • Should this PR be backported?

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci-robot
Copy link

openshift-ci-robot commented May 30, 2024

@danmanor: This pull request references MGMT-8356 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the task to target the "4.17.0" version, but no target version was set.

In response to this:

Overview

This PR is is about using kind cluster using podman provider to deploy assisted-service and its components for local subsystem tests.

Goals

Using kind instead of Minikube for local k8s development can offer several advantages:

  • Speed and Simplicity: kind starts faster than Minikube because it runs k8s cluster components as podman containers. This can lead to quicker setup and teardown times.
  • Less Resource-Intensive: Since kind runs within podman, it tends to use less system resources compared to Minikube, which creates a new VM for the k8s cluster. This is a big advantage for running subsystem tests on a PC.
  • Avoid using KVM: KVM was causing several issues in our deployments.

Major Changes

  • Network: With Minikube, components we automatically exposed outside the cluster when their LoadBalancer Service resource was applied (by getting External IP). we utilized it to get traffic inside the cluster into the components. this is not the case with kind, so we forward traffic differently - we use contour (https://projectcontour.io/) Ingress controller and Ingress resources to forward traffic from the hostname:80 to the application's services. We also expose port 80 in kind to get the traffic into envoy. This solves the issue in a good way for all components but postgres, which requires a TCP connection which contour can't provide. Therefore, I exposed port 5432 as well and forward this traffic to NodePort 30000 (postgres service NodePort).
  • Local Registry: With Minikube, we were using local registry to store assisted-service image after it was built, for the pod to pull from later. Configuring local registry with kind using podman is not supported and redundant. Instead, I loaded the build image into kind for local use

To Do:

  • metrics tests are still failing locally with kind

List all the issues related to this PR

  • New Feature
  • Enhancement
  • Bug fix
  • Tests
  • Documentation
  • CI/CD

What environments does this code impact?

  • Automation (CI, tools, etc)
  • Cloud
  • Operator Managed Deployments
  • None

How was this code tested?

  • assisted-test-infra environment
  • dev-scripts environment
  • Reviewer's test appreciated
  • Waiting for CI to do a full test run
  • Manual (Elaborate on how it was tested)
  • No tests needed

Checklist

  • Title and description added to both, commit and PR.
  • Relevant issues have been associated (see CONTRIBUTING guide)
  • This change does not require a documentation update (docstring, docs, README, etc)
  • Does this change include unit-tests (note that code changes require unit-tests)

Reviewers Checklist

  • Are the title and description (in both PR and commit) meaningful and clear?
  • Is there a bug required (and linked) for this change?
  • Should this PR be backported?

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci-robot
Copy link

openshift-ci-robot commented May 30, 2024

@danmanor: This pull request references MGMT-8356 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the task to target the "4.17.0" version, but no target version was set.

In response to this:

Overview

This PR is is about using kind cluster using podman provider to deploy assisted-service and its components for local subsystem tests.

Goals

Using kind instead of Minikube for local k8s development can offer several advantages:

  • Speed and Simplicity: kind starts faster than Minikube because it runs k8s cluster components as podman containers. This can lead to quicker setup and teardown times.
  • Less Resource-Intensive: Since kind runs within podman, it tends to use less system resources compared to Minikube, which creates a new VM for the k8s cluster. This is a big advantage for running subsystem tests on a PC.
  • Avoid using KVM: KVM was causing several issues in our deployments.

Major Changes

  • Network: With Minikube, components we automatically exposed outside the cluster when their LoadBalancer Service resource was applied (by getting External IP). we utilized it to get traffic inside the cluster into the components. this is not the case with kind, so we forward traffic differently - we use contour (https://projectcontour.io/) Ingress controller and Ingress resources to forward traffic from the hostname:80 to the application's services. We also expose port 80 in kind to get the traffic into envoy. This solves the issue in a good way for all components but postgres, which requires a TCP connection which contour can't provide. Therefore, I exposed port 5432 as well and forward this traffic to NodePort 30000 (postgres service NodePort).
  • Local Registry: With Minikube, we were using local registry to store assisted-service image after it was built, for the pod to pull from later. Configuring local registry with kind using podman is not supported and redundant. Instead, I loaded the build image into kind for local use

To Do:

  • metrics tests are still failing locally with kind
  • CI deployment is still damaged

List all the issues related to this PR

  • New Feature
  • Enhancement
  • Bug fix
  • Tests
  • Documentation
  • CI/CD

What environments does this code impact?

  • Automation (CI, tools, etc)
  • Cloud
  • Operator Managed Deployments
  • None

How was this code tested?

  • assisted-test-infra environment
  • dev-scripts environment
  • Reviewer's test appreciated
  • Waiting for CI to do a full test run
  • Manual (Elaborate on how it was tested)
  • No tests needed

Checklist

  • Title and description added to both, commit and PR.
  • Relevant issues have been associated (see CONTRIBUTING guide)
  • This change does not require a documentation update (docstring, docs, README, etc)
  • Does this change include unit-tests (note that code changes require unit-tests)

Reviewers Checklist

  • Are the title and description (in both PR and commit) meaningful and clear?
  • Is there a bug required (and linked) for this change?
  • Should this PR be backported?

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@danmanor danmanor marked this pull request as draft May 30, 2024 14:52
@danmanor
Copy link
Contributor Author

/test edge-subsystem-kubeapi-aws

@danmanor
Copy link
Contributor Author

/test edge-subsystem-aws

@openshift-ci openshift-ci bot added the size/XL Denotes a PR that changes 500-999 lines, ignoring generated files. label Jun 17, 2024
tools/utils.py Outdated Show resolved Hide resolved
tools/utils.py Outdated Show resolved Hide resolved
@danmanor danmanor force-pushed the kind-subsystem branch 2 times, most recently from 961f1cc to fe97e3b Compare June 17, 2024 15:09
@danmanor danmanor requested a review from rccrdpccl June 17, 2024 15:09
@danmanor
Copy link
Contributor Author

/unhold

@openshift-ci openshift-ci bot removed the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label Jun 18, 2024
Makefile Outdated Show resolved Hide resolved
@danmanor danmanor requested a review from rccrdpccl June 18, 2024 09:29
Makefile Show resolved Hide resolved
Makefile Outdated Show resolved Hide resolved
@danmanor
Copy link
Contributor Author

/retest

@danmanor danmanor requested a review from rccrdpccl June 18, 2024 11:47
@rccrdpccl
Copy link
Contributor

/lgtm
/approve

@openshift-ci openshift-ci bot added the lgtm Indicates that a PR is ready to be merged. label Jun 18, 2024
Copy link

openshift-ci bot commented Jun 18, 2024

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: danmanor, rccrdpccl

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

Copy link

openshift-ci bot commented Jun 18, 2024

@danmanor: all tests passed!

Full PR test history. Your PR dashboard.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

@openshift-merge-bot openshift-merge-bot bot merged commit 0976175 into openshift:master Jun 18, 2024
14 checks passed
@openshift-bot
Copy link
Contributor

[ART PR BUILD NOTIFIER]

This PR has been included in build ose-agent-installer-api-server-container-v4.17.0-202406190043.p0.g0976175.assembly.stream.el9 for distgit ose-agent-installer-api-server.
All builds following this will include this PR.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. lgtm Indicates that a PR is ready to be merged. size/XL Denotes a PR that changes 500-999 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants