1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-05 15:47:14 +01:00
Files
installer/OWNERS_ALIASES

204 lines
3.5 KiB
Plaintext
Raw Normal View History

# See the OWNERS_ALIASES docs: https://git.k8s.io/community/contributors/guide/owners.md#OWNERS_ALIASES
aliases:
2022-07-21 11:54:53 -04:00
installer-team:
- andfasano
- barbacbd
- bfournie
2019-05-01 14:32:30 -04:00
- jhixson74
2019-04-22 13:19:27 -04:00
- patrickdillon
- pawanpinjarkar
- rna-afk
- rwsu
- sadasu
2025-03-11 16:35:46 -04:00
- tthvo
splat-team:
- jcpowermac
- mtulio
- rvanderp3
- vr4manta
libvirt-approvers:
- praveenkumar
- cfergeau
libvirt-reviewers:
- praveenkumar
- cfergeau
2018-10-06 06:00:20 +02:00
openstack-approvers:
- gryf
2020-03-11 08:07:49 +01:00
- mandre
- stephenfin
openstack-reviewers:
- gryf
- mandre
- stephenfin
powervc-approvers:
- hamzy
- mjturek
- prb112
- Prashanth684
powervc-reviewers:
- hamzy
- mjturek
- prb112
- Prashanth684
powervs-approvers:
- clnperez
- mkumatag
- Prashanth684
powervs-reviewers:
- clnperez
- mkumatag
- Prashanth684
- mjturek
vsphere-approvers:
- dav1x
- jcpowermac
- patrickdillon
2021-06-28 12:30:49 -04:00
- rvanderp3
2024-05-09 16:10:03 -04:00
- vr4manta
vsphere-reviewers:
- jcpowermac
- patrickdillon
2024-05-09 16:10:03 -04:00
- rvanderp3
- vr4manta
baremetal-approvers:
2022-03-16 13:48:44 -04:00
- dtantsur
- elfosardo
- honza
2022-03-16 13:48:44 -04:00
- iurygregory
baremetal-reviewers:
2022-03-16 13:48:44 -04:00
- dtantsur
- elfosardo
- honza
2022-03-16 13:48:44 -04:00
- iurygregory
aws-approvers:
- mtulio
- patrickdillon
- tthvo
aws-reviewers:
- mtulio
- patrickdillon
- tthvo
gcp-approvers:
- patrickdillon
- barbacbd
gcp-reviewers:
- patrickdillon
- barbacbd
azure-approvers:
- jhixson74
- rna-afk
- sadasu
azure-reviewers:
- jhixson74
- rna-afk
- sadasu
2020-05-19 10:00:21 +02:00
ovirt-approvers:
- janosdebugs
- eslutsky
- mmartinv
- bkhizgiy
ovirt-reviewers:
- janosdebugs
- eslutsky
- mmartinv
- bkhizgiy
ibmcloud: Add scaffolding for the IBM Cloud platform ibmcloud: add ibm cloud types support the new ibm cloud platform by adding required types ibmcloud: add initial assets Add ibmcloud assets to support the new ibmcloud platform. These changes are functional, but additional functionality will be built out over time ibmcloud: resolve linting issues ibmcloud: obtain the cisInstanceCRN for install-config The cisInstanceCRN field is derived from the user-provided baseDomain. It is needed for all DNS configuration. types: fix ibmcloud machinepool file name ibmcloud: rename platform ResourceGroupID field Rename the field `ResourceGroupID` in the Platform type to `ResourceGroup` ibmcloud: add initial metadata ibmcloud: add ClusterOSImage customization The ClusterOSImage field will allow the user to specify the custom RHCOS image to use for their cluster VSIs ibmcloud: add fields to Platform type Add the DefaultMachinePlatform, VPC, VPCResourceGroup, and Subnets fields to the Platform type. These are needed to fully define a cluster. ibmcloud: improve platform validation and tests Add in additional validation to the ibmcloud Platform. Also, add unit tests around that new validation. This is just a start and more validation and unit tests are required. ibmcloud: fix linting issues These issues were discovered using golangci-lint ibmcloud: use resource group name in install config Use the resource group name instead of ID in the install config. This will be more human friendly. The ID will also still be valid, but name will be preferred. ibmcloud: improve default resource group check Check for the default resource group based off of the 'default' field in the resource group struct. ibmcloud: fix typo ibmcloud: remove vpcResourceGroup and use vpc ID vpcResourceGroup is no longer needed if the vpc field holds the ID of the VPC instead of the name. ibmcloud: enforce clusterOSImage region The clusterOSImage refers to a custom image in a user's VPC. That image is regionally scoped and the region should be honored. Users should not be allowed to pick a custom image from a region that differes from the value of the region field in the install config. ibmcloud: use resourcev2 API The resourcev2 API should be used in place of v1. This is the most up-to-date and well supported version. ibmcloud: fix log message Co-Authored-By: Hidematsu Sueki <Hidematsu.Sueki@ibm.com> ibmcloud: add machinepool type and validation Add the MachinePool type for the IBM Cloud platform. Also include initial validation on the fields. ibmcloud: update survey version ibmcloud: use ibm go sdks instead of bluemix-go The ibm-go-sdk and corresponding service SDKs in the IBM GH org are more up-to-date and routinely supported. The old bluemix-go SDKs should no longer be used. update go mod update vendor fix: make validateVPCConfig a private function Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: improve log message for resource group not found Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: simplify subnet return statement Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: improve log message for vpc not found Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: images slice declaration Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: improve images range loop Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: typo in baseDomain help string Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: clarify resource group help message fix: use platformPath as variable name Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: ibmcloud platform reference Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: remove unnecessary conditionals in validation fix: check encryptionKey exists before validation fix: improve zone validation message Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: keep errors out of happy path fix: add index to subnets validation fix: create VPCResourceNotFoundError fix: use sets.String for contains fix: ibmcloud platform type comments fix: improve vpc config validation messages fix: add omitempty for encryptionKey Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: improve BootVolume copying Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: rename MachinePool.Type to InstanceType fix: remove validateRegion fix: remove unnecessary context from client fix: remove context timeout in ic Platform fix: remove superfluous edit fix: update unit tests fix: move types used by cilent to same package fix: update OWNERS and OWNERS_ALIASES fix: improve client call to load services fix: improve GetZoneIDByName range loop fix: whitepsace in OWNERS fix: populate ibmcloud OWNERS_ALIASES fix: make cisServiceID a const Co-authored-by: Matthew Staebler <staebler@redhat.com> ibmcloud: refactor resource groups Allow users to have VPC resources in a different resource group from the cluster creation. This will enable CI and E2E testing along with making it easier to destroy clusters. This commit also adds a "Name" suffix to resource groups to align with other platforms naming convention. fix: error message format fix: update unit test ibmcloud: move ibmcloud to hidden platforms The IBMCloud platform will be in a developer preview for 4.9. As a result we will move it to the list of hidden platforms. This commit does that by default, but allows for it to show up in the survey via a build flag: 'ibmcloud'. ibmcloud: remove cisInstanceCRN field The cisInstanceCRN platform field is not needed. Though it is possible to manage a single DNS zone with multiple CIS instances, only one zone can be in the "Active" state at a time. As a result, we know which CIS instance to use based off of its managed zone's state. fix: address pr comments update codegen
2021-04-15 14:51:26 -04:00
ibmcloud-approvers:
- bobbyradford
- hasueki
- rvanderp3
ibmcloud: Add scaffolding for the IBM Cloud platform ibmcloud: add ibm cloud types support the new ibm cloud platform by adding required types ibmcloud: add initial assets Add ibmcloud assets to support the new ibmcloud platform. These changes are functional, but additional functionality will be built out over time ibmcloud: resolve linting issues ibmcloud: obtain the cisInstanceCRN for install-config The cisInstanceCRN field is derived from the user-provided baseDomain. It is needed for all DNS configuration. types: fix ibmcloud machinepool file name ibmcloud: rename platform ResourceGroupID field Rename the field `ResourceGroupID` in the Platform type to `ResourceGroup` ibmcloud: add initial metadata ibmcloud: add ClusterOSImage customization The ClusterOSImage field will allow the user to specify the custom RHCOS image to use for their cluster VSIs ibmcloud: add fields to Platform type Add the DefaultMachinePlatform, VPC, VPCResourceGroup, and Subnets fields to the Platform type. These are needed to fully define a cluster. ibmcloud: improve platform validation and tests Add in additional validation to the ibmcloud Platform. Also, add unit tests around that new validation. This is just a start and more validation and unit tests are required. ibmcloud: fix linting issues These issues were discovered using golangci-lint ibmcloud: use resource group name in install config Use the resource group name instead of ID in the install config. This will be more human friendly. The ID will also still be valid, but name will be preferred. ibmcloud: improve default resource group check Check for the default resource group based off of the 'default' field in the resource group struct. ibmcloud: fix typo ibmcloud: remove vpcResourceGroup and use vpc ID vpcResourceGroup is no longer needed if the vpc field holds the ID of the VPC instead of the name. ibmcloud: enforce clusterOSImage region The clusterOSImage refers to a custom image in a user's VPC. That image is regionally scoped and the region should be honored. Users should not be allowed to pick a custom image from a region that differes from the value of the region field in the install config. ibmcloud: use resourcev2 API The resourcev2 API should be used in place of v1. This is the most up-to-date and well supported version. ibmcloud: fix log message Co-Authored-By: Hidematsu Sueki <Hidematsu.Sueki@ibm.com> ibmcloud: add machinepool type and validation Add the MachinePool type for the IBM Cloud platform. Also include initial validation on the fields. ibmcloud: update survey version ibmcloud: use ibm go sdks instead of bluemix-go The ibm-go-sdk and corresponding service SDKs in the IBM GH org are more up-to-date and routinely supported. The old bluemix-go SDKs should no longer be used. update go mod update vendor fix: make validateVPCConfig a private function Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: improve log message for resource group not found Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: simplify subnet return statement Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: improve log message for vpc not found Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: images slice declaration Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: improve images range loop Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: typo in baseDomain help string Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: clarify resource group help message fix: use platformPath as variable name Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: ibmcloud platform reference Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: remove unnecessary conditionals in validation fix: check encryptionKey exists before validation fix: improve zone validation message Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: keep errors out of happy path fix: add index to subnets validation fix: create VPCResourceNotFoundError fix: use sets.String for contains fix: ibmcloud platform type comments fix: improve vpc config validation messages fix: add omitempty for encryptionKey Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: improve BootVolume copying Co-authored-by: Matthew Staebler <staebler@redhat.com> fix: rename MachinePool.Type to InstanceType fix: remove validateRegion fix: remove unnecessary context from client fix: remove context timeout in ic Platform fix: remove superfluous edit fix: update unit tests fix: move types used by cilent to same package fix: update OWNERS and OWNERS_ALIASES fix: improve client call to load services fix: improve GetZoneIDByName range loop fix: whitepsace in OWNERS fix: populate ibmcloud OWNERS_ALIASES fix: make cisServiceID a const Co-authored-by: Matthew Staebler <staebler@redhat.com> ibmcloud: refactor resource groups Allow users to have VPC resources in a different resource group from the cluster creation. This will enable CI and E2E testing along with making it easier to destroy clusters. This commit also adds a "Name" suffix to resource groups to align with other platforms naming convention. fix: error message format fix: update unit test ibmcloud: move ibmcloud to hidden platforms The IBMCloud platform will be in a developer preview for 4.9. As a result we will move it to the list of hidden platforms. This commit does that by default, but allows for it to show up in the survey via a build flag: 'ibmcloud'. ibmcloud: remove cisInstanceCRN field The cisInstanceCRN platform field is not needed. Though it is possible to manage a single DNS zone with multiple CIS instances, only one zone can be in the "Active" state at a time. As a result, we know which CIS instance to use based off of its managed zone's state. fix: address pr comments update codegen
2021-04-15 14:51:26 -04:00
ibmcloud-reviewers:
- bobbyradford
- hasueki
- rvanderp3
nutanix-approvers:
- adiantum
- rvanderp3
- jcpowermac
- thunderboltsid
- yanhua121
nutanix-reviewers:
- adiantum
- rvanderp3
- jcpowermac
- thunderboltsid
- yanhua121
# Keep in sync with the `coreos-approvers` and `coreos-reviewers` lists in https://github.com/openshift/release/blob/master/OWNERS_ALIASES
coreos-approvers:
- c4rt0
- cgwalters
- dustymabe
- mike-nguyen
- jlebon
- travier
- HuijingHei
- jmarrero
- aaradhak
- ravanelli
2022-06-10 12:15:08 -04:00
- gursewak1997
- prestist
- marmijo
- RishabhSaini
2023-02-02 15:24:48 +00:00
- Adam0Brien
2023-05-24 09:51:20 -04:00
- lukewarmtemp
2023-07-19 15:29:59 -03:00
- yasminvalim
- jbtrystram
2023-11-16 16:44:25 +05:30
- madhu-pillai
- Johan-Liebert1
- tlbueno
2025-09-22 09:12:34 +02:00
- joelcapitao
- Roshan-R
- PeaceRebel
- angelcerveraroldan
- Rolv-Apneseth
coreos-reviewers:
- c4rt0
- cgwalters
- dustymabe
- mike-nguyen
- jlebon
- travier
- HuijingHei
- jmarrero
- aaradhak
- ravanelli
2022-06-10 12:15:08 -04:00
- gursewak1997
- prestist
- marmijo
- RishabhSaini
2023-02-02 15:24:48 +00:00
- Adam0Brien
2023-05-24 09:51:20 -04:00
- lukewarmtemp
2023-07-19 15:29:59 -03:00
- yasminvalim
- jbtrystram
2023-11-16 16:44:25 +05:30
- madhu-pillai
- Johan-Liebert1
- tlbueno
2025-09-22 09:12:34 +02:00
- joelcapitao
- Roshan-R
- PeaceRebel
- angelcerveraroldan
- Rolv-Apneseth
agent-reviewers:
- andfasano
- bfournie
- pawanpinjarkar
- rwsu
- zaneb
agent-approvers:
- andfasano
- bfournie
- pawanpinjarkar
- rwsu
- zaneb
imagebased-reviewers:
- eranco74
- javipolo
- mresvanis
- tsorya
imagebased-approvers:
- eranco74
- patrickdillon
- tsorya
- zaneb
- mresvanis