Re: [CentOS] centos-release-gluster8 for centos 7

2021-01-18 Thread Nicolas Zuber
Thanks for that information. On 
https://buildlogs.centos.org/centos/7/storage/x86_64/gluster-8/ one can 
find at least rpms for gluster 8, 8.1, 8.2, and 8.3. And in the 
community build service one can find a centos-release-gluster8 and 
glusterfs-8.3-1.el7 entries with state complete. So I guess it is 
already build as far as I understand.


Best Regards
Nicolas

On Mo. 18.01.2021 20:20 Uhr, Strahil Nikolov via CentOS wrote:

Last time I asked, there was no reply - which means that most probably v8 is 
not yet build for C7

Best Regards,
Strahil Nikolov






В понеделник, 18 януари 2021 г., 15:04:12 Гринуич+2, Nicolas Zuber 
 написа:





Hi all,

We have some Centos 7 server running with gluster 7 installed. We are
using the the packages provided by the storage SIG
(centos-release-gluster7). "Yum search centos-release-gluster" shows
centos-release-gluster7 as the latest gluster version provided. But
according to https://wiki.centos.org/SpecialInterestGroup/Storage there
should be already packages for the gluster 8 release available.

So I am wondering what I can do to be able to install glusterfs 8 from
the storage SIG.

Thanks,
Nicolas
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] centos-release-gluster8 for centos 7

2021-01-18 Thread Strahil Nikolov via CentOS
Last time I asked, there was no reply - which means that most probably v8 is 
not yet build for C7

Best Regards,
Strahil Nikolov






В понеделник, 18 януари 2021 г., 15:04:12 Гринуич+2, Nicolas Zuber 
 написа: 





Hi all,

We have some Centos 7 server running with gluster 7 installed. We are 
using the the packages provided by the storage SIG 
(centos-release-gluster7). "Yum search centos-release-gluster" shows 
centos-release-gluster7 as the latest gluster version provided. But 
according to https://wiki.centos.org/SpecialInterestGroup/Storage there 
should be already packages for the gluster 8 release available.

So I am wondering what I can do to be able to install glusterfs 8 from 
the storage SIG.

Thanks,
Nicolas
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


[CentOS] Samba setup

2021-01-18 Thread Robert G. (Doc) Savage via CentOS
I'm
following 
https://www.linuxbabe.com/redhat/set-up-samba-server-on-centos-8-rhel-8-for-file-sharing
 to set up Samba 4.12.3-12 on my Storinator fileserver running CentOS
8.3. I am trying to share out /tank/Windows/ as a Samba share:

# ls -al /tank
total 61
drwxr-xr-x. 6 root root 7 Dec 26 10:43 Backups
drwxr-xr-x. 6 root root 6 Dec 4 22:47 Repos
drwxrwxrwx. 2 doc doc 4 Dec 28 14:01 VMs
drwxrwxrwx.  2 root root 2 Jan 17 17:04 Windows

My /etc/samba/smb.conf file is set up as follows:

# testparm
Load smb config files from /etc/samba/smb.conf
Loaded services file OK.
Server role: ROLE_STANDALONE

Press enter to see a dump of your service definitions

# Global parameters
[global]
printcap name = cups
security = USER
idmap config * : backend = tdb
cups options = raw
hosts allow = 192.168.0

...

[public]
comment = public share, no need to enter username and password
guest ok = Yes
path = /tank/Windows
read only = No

When I try to map network drive from my Windows 10 PC using the
graphical File Explorer, it asks me for my username and password. It
doesn't accept my password. When I try to map it at the CMD cli, I get:

C:\> net use S: \\192.168.1.20\public\
System error 67 has occurred.

The network name cannot be found.

Could this be a network browsing problem in Samba? What have I missed?

--Doc Savage
     Fairview Heights, IL
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] How to do virtual IP on NetworkManager

2021-01-18 Thread Stephen John Smoogen
On Mon, 18 Jan 2021 at 12:51, Simon Matter  wrote:

> > On Mon, Jan 18, 2021 at 2:56 PM Jerry Geis  wrote:
> >
> >> Hi All,
> >>
> >> I use virtual IP from time to time on CentOS 7. just take something like
> >> eth0 and make eth0:1 put in there the IP and subnet and bring up the new
> >> IP
> >> and it works.
> >>
> >> How do I do that with NetworkManager on the command line (assuming all
> >> static IP information)
> >> I do something like this from nmcli to set the static address:
> >> nmcli connection modify eth0 ipv4.method manual ipv6.method ignore
> >> autoconnect yes ipv4.addr 192.168.1.8/24 gw4 192.168.1.1 ipv4.dns
> >> 8.8.8.8
> >>
> >> How then do I add a virtual IP?
> >>
> >> Thanks
> >>
> >> Jerry
> >
> >
> > With nmcli you should use:
> > nmcli con mod eth0 +ipv4.addresses 192.168.1.X/24
> >
> > This would modify your existing ifcfg-eth0 adding the lines:
> >
> > IPADDR1=192.168.1.X
> > PREFIX1=24
> >
> > To have the new setting applied and your new ip alias up and running you
> > can then use
> >
> > nmcli dev reapply eth0
> > (supposing the device name bound to the connection is eth0)
> >
> > You can also manually modify the file adding the two lines above and then
> > run:
> > nmcli con reload
> > nmcli dev reapply eth0
> >
> > I think you should not lose your connection, but always test on a non
> > production machine with the same os version... just for safety
> > HIH,
> > Gianluca
>
> Hi Gianluca,
>
> Am I right that what you describe doesn't add an alias device like eth0:1
> but adds the additional IP address to the eth0 device?
>
> Apart from that, when running with NetworkManager, can one still add a
> temporary eth0:1 alias (with ifconfig/ip), use it and remove it again, or
> does NM somehow prevent this?
>
>
There are several issues which get in the way, but the major one is with
the iproute command replacing net-tools (versus NetworkManager)

https://unix.stackexchange.com/questions/192908/how-do-you-create-an-ip-alias-using-iproute-utils
https://unix.stackexchange.com/questions/87829/difference-between-virtual-interfaces-with-ifconfig-and-iproute2

[The major issues I run into is that ethX is considered a kernel only
interface and may not always point to the same interface depending on the
day of the week.. that gets added onto how iproute wants to do 'aliases'
versus proper port configs and then NetworkManager sits on top and get the
blame :)]



> Regards,
> Simon
>
> ___
> CentOS mailing list
> CentOS@centos.org
> https://lists.centos.org/mailman/listinfo/centos
>


-- 
Stephen J Smoogen.
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] How to do virtual IP on NetworkManager

2021-01-18 Thread Gianluca Cecchi
On Mon, Jan 18, 2021 at 6:51 PM Simon Matter  wrote:

>
> Hi Gianluca,
>
> Am I right that what you describe doesn't add an alias device like eth0:1
> but adds the additional IP address to the eth0 device?
>

Yes, in fact after adding it I see this kind of thing (with my ip test
addressing on eth1):

# ip a
. . .
3: eth1:  mtu 1500 qdisc pfifo_fast state
UP group default qlen 1000
link/ether 52:54:00:61:73:d4 brd ff:ff:ff:ff:ff:ff
inet 192.168.124.102/24 brd 192.168.124.255 scope global noprefixroute
eth1
   valid_lft forever preferred_lft forever
inet 192.168.124.152/24 brd 192.168.124.255 scope global secondary
noprefixroute eth1
   valid_lft forever preferred_lft forever



> Apart from that, when running with NetworkManager, can one still add a
> temporary eth0:1 alias (with ifconfig/ip), use it and remove it again, or
> does NM somehow prevent this?
>
> Regards,
> Simon
>
>
>
I think it is not managed by NM. I didn't find anything in its documentation
Probably to have it configured you need to setup the desired
interfaces/connections using
NM_CONTROLLED=no
in its configuration and use the classic network service
Also because the eth0:1 ip aliasing way is deprecated
https://www.kernel.org/doc/html/latest/networking/alias.html
and perhaps NM uses only iproute2...

Gianluca
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] How to do virtual IP on NetworkManager

2021-01-18 Thread Simon Matter
> On Mon, Jan 18, 2021 at 2:56 PM Jerry Geis  wrote:
>
>> Hi All,
>>
>> I use virtual IP from time to time on CentOS 7. just take something like
>> eth0 and make eth0:1 put in there the IP and subnet and bring up the new
>> IP
>> and it works.
>>
>> How do I do that with NetworkManager on the command line (assuming all
>> static IP information)
>> I do something like this from nmcli to set the static address:
>> nmcli connection modify eth0 ipv4.method manual ipv6.method ignore
>> autoconnect yes ipv4.addr 192.168.1.8/24 gw4 192.168.1.1 ipv4.dns
>> 8.8.8.8
>>
>> How then do I add a virtual IP?
>>
>> Thanks
>>
>> Jerry
>
>
> With nmcli you should use:
> nmcli con mod eth0 +ipv4.addresses 192.168.1.X/24
>
> This would modify your existing ifcfg-eth0 adding the lines:
>
> IPADDR1=192.168.1.X
> PREFIX1=24
>
> To have the new setting applied and your new ip alias up and running you
> can then use
>
> nmcli dev reapply eth0
> (supposing the device name bound to the connection is eth0)
>
> You can also manually modify the file adding the two lines above and then
> run:
> nmcli con reload
> nmcli dev reapply eth0
>
> I think you should not lose your connection, but always test on a non
> production machine with the same os version... just for safety
> HIH,
> Gianluca

Hi Gianluca,

Am I right that what you describe doesn't add an alias device like eth0:1
but adds the additional IP address to the eth0 device?

Apart from that, when running with NetworkManager, can one still add a
temporary eth0:1 alias (with ifconfig/ip), use it and remove it again, or
does NM somehow prevent this?

Regards,
Simon

___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] How to do virtual IP on NetworkManager

2021-01-18 Thread Gianluca Cecchi
On Mon, Jan 18, 2021 at 2:56 PM Jerry Geis  wrote:

> Hi All,
>
> I use virtual IP from time to time on CentOS 7. just take something like
> eth0 and make eth0:1 put in there the IP and subnet and bring up the new IP
> and it works.
>
> How do I do that with NetworkManager on the command line (assuming all
> static IP information)
> I do something like this from nmcli to set the static address:
> nmcli connection modify eth0 ipv4.method manual ipv6.method ignore
> autoconnect yes ipv4.addr 192.168.1.8/24 gw4 192.168.1.1 ipv4.dns 8.8.8.8
>
> How then do I add a virtual IP?
>
> Thanks
>
> Jerry


With nmcli you should use:
nmcli con mod eth0 +ipv4.addresses 192.168.1.X/24

This would modify your existing ifcfg-eth0 adding the lines:

IPADDR1=192.168.1.X
PREFIX1=24

To have the new setting applied and your new ip alias up and running you
can then use

nmcli dev reapply eth0
(supposing the device name bound to the connection is eth0)

You can also manually modify the file adding the two lines above and then
run:
nmcli con reload
nmcli dev reapply eth0

I think you should not lose your connection, but always test on a non
production machine with the same os version... just for safety
HIH,
Gianluca
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


[CentOS-docs] [centos/centos.org] 01/01: Merge #73 `Update calendar entries.`

2021-01-18 Thread git
This is an automated email from the git hooks/post-receive script.

rbowen pushed a commit to branch master
in repository centos/centos.org.

commit bc768ec88be0b50cf34bababf243133ef42df3a6
Merge: 1ec8251 2ae375f
Author: Rich Bowen 
AuthorDate: Mon Jan 18 14:00:04 2021 +

Merge #73 `Update calendar entries.`

 community/calendar.md   | 22 +++---
 community/irc-meetings.ical | 39 ++-
 2 files changed, 17 insertions(+), 44 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
CentOS-docs mailing list
CentOS-docs@centos.org
https://lists.centos.org/mailman/listinfo/centos-docs


[CentOS-docs] [centos/centos.org] branch master updated (1ec8251 -> bc768ec)

2021-01-18 Thread git
This is an automated email from the git hooks/post-receive script.

rbowen pushed a change to branch master
in repository centos/centos.org.

from 1ec8251  Added HyperScale SIG GPG pub key
 add 2ae375f  Update calendar entries.
 new bc768ec  Merge #73 `Update calendar entries.`

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 community/calendar.md   | 22 +++---
 community/irc-meetings.ical | 39 ++-
 2 files changed, 17 insertions(+), 44 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
CentOS-docs mailing list
CentOS-docs@centos.org
https://lists.centos.org/mailman/listinfo/centos-docs


[CentOS] How to do virtual IP on NetworkManager

2021-01-18 Thread Jerry Geis
Hi All,

I use virtual IP from time to time on CentOS 7. just take something like
eth0 and make eth0:1 put in there the IP and subnet and bring up the new IP
and it works.

How do I do that with NetworkManager on the command line (assuming all
static IP information)
I do something like this from nmcli to set the static address:
nmcli connection modify eth0 ipv4.method manual ipv6.method ignore
autoconnect yes ipv4.addr 192.168.1.8/24 gw4 192.168.1.1 ipv4.dns 8.8.8.8

How then do I add a virtual IP?

Thanks

Jerry
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


[CentOS] centos-release-gluster8 for centos 7

2021-01-18 Thread Nicolas Zuber

Hi all,

We have some Centos 7 server running with gluster 7 installed. We are 
using the the packages provided by the storage SIG 
(centos-release-gluster7). "Yum search centos-release-gluster" shows 
centos-release-gluster7 as the latest gluster version provided. But 
according to https://wiki.centos.org/SpecialInterestGroup/Storage there 
should be already packages for the gluster 8 release available.


So I am wondering what I can do to be able to install glusterfs 8 from 
the storage SIG.


Thanks,
Nicolas
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS-virt] HCI Cluster - CentOS8 to Streams Upgrade Broken

2021-01-18 Thread Sandro Bonazzola
Il giorno gio 7 gen 2021 alle ore 15:58 Jeremey Wise 
ha scritto:

>
> I have a test environment.  Three node HCI cluster.  CentOS8 build.
> Gluster as file system with standard cockpit deploy of HCI.
>

Hi, I would recommend to reach us...@ovirt.org mailing list for oVirt
related issues.



>
>
> Converted to CentOS Streams which seemed to go fine.  Did a yum update and
> no issues.
>
> Did a reboot.. and now engine will no longer start. So I can no longer
> start my Virtual machines.  I posted as bug
> https://bugzilla.redhat.com/show_bug.cgi?id=1911910   I posted to CentOS
> forum https://forums.centos.org/viewtopic.php?f=54=76716   but no
> responses.
>
> Can anyone provide means or next step to root cause and or fix?
>

We pushed a fix which is in current nightly but please keep using CentOS
Linux for oVirt till it will be officially announced its full compatibility
with CentOS Stream.
Currently it's a tech preview up to oVirt 4.4.4.


> It would take me days to rebuild the entire solution and I really hate to
> "reload" as a fix.. but after two weeks... nothing changing... just have to
> find some means to get cluster back working.
>
> Thanks.
>
> # all three servers are looping below events in /var/log/messages ###
> Jan  7 09:48:03 thor journal[2375050]: ovirt-ha-broker
> ovirt_hosted_engine_ha.broker.broker.Broker ERROR Failed initializing the
> broker: [Errno 107] Transport endpoint is not connected:
> '/rhev/data-center/mnt/glusterSD/thorst.penguinpages.local:_engine/3afc47ba-afb9-413f-8de5-8d9a2f45ecde/ha_agent/hosted-engine.metadata'
> Jan  7 09:48:03 thor journal[2375050]: ovirt-ha-broker
> ovirt_hosted_engine_ha.broker.broker.Broker ERROR Traceback (most recent
> call last):#012  File
> "/usr/lib/python3.6/site-packages/ovirt_hosted_engine_ha/broker/broker.py",
> line 64, in run#012self._storage_broker_instance =
> self._get_storage_broker()#012  File
> "/usr/lib/python3.6/site-packages/ovirt_hosted_engine_ha/broker/broker.py",
> line 143, in _get_storage_broker#012return
> storage_broker.StorageBroker()#012  File
> "/usr/lib/python3.6/site-packages/ovirt_hosted_engine_ha/broker/storage_broker.py",
> line 97, in __init__#012self._backend.connect()#012  File
> "/usr/lib/python3.6/site-packages/ovirt_hosted_engine_ha/lib/storage_backends.py",
> line 408, in connect#012self._check_symlinks(self._storage_path,
> volume.path, service_link)#012  File
> "/usr/lib/python3.6/site-packages/ovirt_hosted_engine_ha/lib/storage_backends.py",
> line 105, in _check_symlinks#012os.unlink(service_link)#012OSError:
> [Errno 107] Transport endpoint is not connected:
> '/rhev/data-center/mnt/glusterSD/thorst.penguinpages.local:_engine/3afc47ba-afb9-413f-8de5-8d9a2f45ecde/ha_agent/hosted-engine.metadata'
> Jan  7 09:48:03 thor journal[2375050]: ovirt-ha-broker
> ovirt_hosted_engine_ha.broker.broker.Broker ERROR Trying to restart the
> broker
> Jan  7 09:48:03 thor platform-python[2375050]: detected unhandled Python
> exception in '/usr/share/ovirt-hosted-engine-ha/ovirt-ha-broker'
> Jan  7 09:48:03 thor abrt-server[2375084]: Not saving repeating crash in
> '/usr/share/ovirt-hosted-engine-ha/ovirt-ha-broker'
> Jan  7 09:48:03 thor systemd[1]: ovirt-ha-broker.service: Main process
> exited, code=exited, status=1/FAILURE
> Jan  7 09:48:03 thor systemd[1]: ovirt-ha-broker.service: Failed with
> result 'exit-code'.
> Jan  7 09:48:04 thor systemd[1]: ovirt-ha-broker.service: Service
> RestartSec=100ms expired, scheduling restart.
> Jan  7 09:48:04 thor systemd[1]: ovirt-ha-broker.service: Scheduled
> restart job, restart counter is at 44569.
> Jan  7 09:48:04 thor systemd[1]: Stopped oVirt Hosted Engine High
> Availability Communications Broker.
> Jan  7 09:48:04 thor systemd[1]: Started oVirt Hosted Engine High
> Availability Communications Broker.
> Jan  7 09:48:06 thor systemd[1]: ovirt-ha-agent.service: Service
> RestartSec=10s expired, scheduling restart.
> Jan  7 09:48:06 thor systemd[1]: ovirt-ha-agent.service: Scheduled restart
> job, restart counter is at 22270.
> Jan  7 09:48:06 thor systemd[1]: Stopped oVirt Hosted Engine High
> Availability Monitoring Agent.
> Jan  7 09:48:06 thor systemd[1]: Started oVirt Hosted Engine High
> Availability Monitoring Agent.
> Jan  7 09:48:06 thor systemd[1]: Started Session c44598 of user root.
> Jan  7 09:48:06 thor systemd[1]: session-c44598.scope: Succeeded.
> Jan  7 09:48:06 thor journal[2375091]: ovirt-ha-agent
> ovirt_hosted_engine_ha.agent.hosted_engine.HostedEngine ERROR Failed to
> start necessary monitors
> Jan  7 09:48:06 thor journal[2375091]: ovirt-ha-agent
> ovirt_hosted_engine_ha.agent.agent.Agent ERROR Traceback (most recent call
> last):#012  File
> "/usr/lib/python3.6/site-packages/ovirt_hosted_engine_ha/lib/brokerlink.py",
> line 85, in start_monitor#012response = self._proxy.start_monitor(type,
> options)#012  File "/usr/lib64/python3.6/xmlrpc/client.py", line 1112, in
> __call__#012return self.__send(self.__name, 

[CentOS-docs] [centos/centos.org] branch master updated: Added HyperScale SIG GPG pub key

2021-01-18 Thread git
This is an automated email from the git hooks/post-receive script.

arrfab pushed a commit to branch master
in repository centos/centos.org.

The following commit(s) were added to refs/heads/master by this push:
 new 1ec8251  Added HyperScale SIG GPG pub key
1ec8251 is described below

commit 1ec8251e18f61ece8f097638fc0254ed9d3947f6
Author: Fabian Arrotin 
AuthorDate: Mon Jan 18 09:19:26 2021 +0100

Added HyperScale SIG GPG pub key

Signed-off-by: Fabian Arrotin 
---
 keys.md| 30 ++
 keys/RPM-GPG-KEY-CentOS-SIG-HyperScale | 32 
 2 files changed, 50 insertions(+), 12 deletions(-)

diff --git a/keys.md b/keys.md
index d9c505b..de18d0a 100644
--- a/keys.md
+++ b/keys.md
@@ -124,6 +124,18 @@ The following keys are used to sign community led efforts 
within the CentOS Proj
 pub  2048R/764429E6 2015-05-15 CentOS Cloud SIG 
(http://wiki.centos.org/SpecialInterestGroup/Cloud) 
 Key fingerprint = 736A F511 6D9C 40E2 AF6B  074B F9B9 FEE7 7644 29E6
 
+ HyperScale SIG
+[download key](/keys/RPM-GPG-KEY-CentOS-SIG-HyperScale)
+
+pub   2048R/EB3DAC40 2021-01-18 CentOS HyperScale SIG 
(https://wiki.centos.org/SpecialInterestGroup/Hyperscale) 
+Key fingerprint = 9B04 530E 0ED6 ABC4 B2C3  58DD 2A01 FA2A EB3D AC40
+
+ Infra SIG
+[download key ](/keys/RPM-GPG-KEY-CentOS-SIG-Infra)
+
+pub 2048R/F56D1621 2020-08-13 CentOS Infra SIG 
(https://wiki.centos.org/SpecialInterestGroup/Core) 
+Key fingerprint = 2F3B 7058 BCFA C3AB 0C72  B1BC 8B44 4FCE F56D 1621
+
  NFV SIG
 [download key](/keys/RPM-GPG-KEY-CentOS-SIG-NFV)
 
@@ -136,6 +148,12 @@ The following keys are used to sign community led efforts 
within the CentOS Proj
 pub  2048R/51BC2A13 2017-02-20 CentOS OpsTools SIG 
(https://wiki.centos.org/SpecialInterestGroup/OpsTools) 
 Key fingerprint = 7872 8176 9AD7 3878 85EE  A649 4FD9 5327 51BC 2A13
 
+ PaaS SIG
+[download key](/keys/RPM-GPG-KEY-CentOS-SIG-PaaS)
+
+pub  2048R/2F297ECC 2016-05-18 CentOS PaaS SIG 
(https://wiki.centos.org/SpecialInterestGroup/PaaS) 
+Key fingerprint = C5E8 AB44 6FA7 893D 7490  51F1 C34C 5BD4 2F29 7ECC
+
  Software Collections SIG
 [download key](/keys/RPM-GPG-KEY-CentOS-SIG-SCLo)
 
@@ -154,18 +172,6 @@ The following keys are used to sign community led efforts 
within the CentOS Proj
 pub  2048R/61E8806C 2015-06-17 CentOS Virtualization SIG 
(http://wiki.centos.org/SpecialInterestGroup/Virtualization) 

 Key fingerprint = A7C8 E761 309D 2F1C 92C5  0B62 7AEB BE82 61E8 806C
 
- PaaS SIG
-[download key](/keys/RPM-GPG-KEY-CentOS-SIG-PaaS)
-
-pub  2048R/2F297ECC 2016-05-18 CentOS PaaS SIG 
(https://wiki.centos.org/SpecialInterestGroup/PaaS) 
-Key fingerprint = C5E8 AB44 6FA7 893D 7490  51F1 C34C 5BD4 2F29 7ECC
-
- Infra SIG
-[download key ](/keys/RPM-GPG-KEY-CentOS-SIG-Infra)
-
-pub 2048R/F56D1621 2020-08-13 CentOS Infra SIG 
(https://wiki.centos.org/SpecialInterestGroup/Core) 
-Key fingerprint = 2F3B 7058 BCFA C3AB 0C72  B1BC 8B44 4FCE F56D 1621
-
 ### AltArch keys
 
 Community driven ports of CentOS to other platforms.
diff --git a/keys/RPM-GPG-KEY-CentOS-SIG-HyperScale 
b/keys/RPM-GPG-KEY-CentOS-SIG-HyperScale
new file mode 100644
index 000..4d12268
--- /dev/null
+++ b/keys/RPM-GPG-KEY-CentOS-SIG-HyperScale
@@ -0,0 +1,32 @@
+-BEGIN PGP PUBLIC KEY BLOCK-
+Version: GnuPG v2.0.22 (GNU/Linux)
+
+mQENBGAFPdEBCADhXtzOEQcQnug15GHYeYIA9Nw/x96b4XliZFi2GDT7Jqu6njA8
+QJtKm8C4Hoc/DxOXcidxDJ/pu2pYwzxRpuIi0K7PA5lF08HgF7aZsxq0yiFRMCaS
+qpp4NCw/Xj0VPohu7jICQhzalnfZjTk0zEneBnpE6jCSIDLdaH8+iC5F2KerEPjq
++SZOH/aVLdFVgPUbz7zwL7XMsmDT0M22J1zO4QmUTsVbkaqtSwtl/qkl3Eo2hF1x
+ToiYa6CPn2rNnNUZ1xhW2l/hncE9w/kbmzALFKHEo+XUbKsihfp0UAenxNtm0k6E
+FDQTZpJet/nIq+6t3LFmZiFJl8mcIaXm3o95ABEBAAG0ZUNlbnRPUyBIeXBlclNj
+YWxlIFNJRyAoaHR0cHM6Ly93aWtpLmNlbnRvcy5vcmcvU3BlY2lhbEludGVyZXN0
+R3JvdXAvSHlwZXJzY2FsZSkgPHNlY3VyaXR5QGNlbnRvcy5vcmc+iQE5BBMBAgAj
+BQJgBT3RAhsDBwsJCAcDAgEGFQgCCQoLBBYCAwECHgECF4AACgkQKgH6Kus9rEAj
+cggAhwzB6RaWxqwadpmZNKtoC4bc10PsKwgZoHSN0YKiw+5vzu9XO80Xa8PDMVMS
+Uuf+VkAZocnNxajuK/fU/GMHzpzvcRVLUZE2CI693/sYCq09sb2cnVVcoNKEGmpp
+omLS2LinniUMfvOT46QeEIufwPdjXIy8wBbp/Ch/0Qp3pPsWXbN5r4iHdmAyryY7
+AfV0RsE2+G0c49+/aGRBKciOXdgCDpon9b933h0HtjrItEBlA48Z/5KyLHUMKW9E
+stNJjpw1Nv2Z69xzmWsGogJxhnmPKkdJgfFiEv7Ml8a8LL6FuMfpuDWkYJc0qOJl
+lYIuyEZu2+8IlV2mshjQi8Qa1bkBDQRgBT3RAQgA4fFLaZ1HsK+K0fdLxdzRUB2S
+8FfIuV1n53taP6OYzk5fPRf/vwXt7E0IUONvBd/z7LfkR/eGbdG3i+cQnN8fJjHZ
+1DkziTK4Xjq7vgLIOGzONFQwWj5XKoTBpw2+cfEmqiBlFY5erVzgxrZXB0aZeY3w
+vWW2haOBuTUynPcVsdoDCsO5SYgFX8tDmZRUIwsLYvS5gI9DLxO6mLQnXqZapWD6
+GeVw+eCL/EST3eimrsRGPaBWUTplHaVDT3hV+w7Yx5SfjDJxWUJAwl13+YGB6HvR
+T5gJuSgJ5MUQDtBMVGUDsv4Br0YiBSytquAgAAcJ4gzCzqNal623c/soXio+xQAR
+AQABiQEfBBgBAgAJBQJgBT3RAhsMAAoJECoB+irrPaxAv0YIANrohSlmuLFT0U29
+SQkXCN1jjymWlMy/ATHPgfIm0xm2fs1Zfih84iHYsMjvlzy3yveyPQc+eIEhvnGb
+zye7/2WwtO+DsDhRXZZK0bm34kjfTG6MWmlBSbHX8CWQVFeGan+5V9G/zgOPnBDj