Meeting Agenda Item: Introduction Brandon Gray

2017-06-13 Thread Brandon Gray
Hey Fedora Infrastructure Team!

My background is BS/MS in CS with ~10 years of experience as a Linux (RHEL)
system administrator (+ some networking, VMWare, storage, etc.).  I also
have experience in multiple programming languages (python, ruby, perl,
etc.) and ~1 year experience with Ansible (+Tower).

I'm also active in my local community DevOps, Linux, Ruby and Python
meet-ups.

I'm hoping to get involved with more DevOps tools/processes (Ansible,
OpenShift, etc.) and (probably) python programming.

I really like what Red Hat and Fedora do for the OSS community and I'm
excited to help give back!

Brandon Gray

IRC Handle: bgray
Fedora Account: brandongray
Normal Working Hours: 8:30am - 4:30pm CT, Monday - Friday
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: July status update for Fedora Infrastructure Apprentices

2017-07-03 Thread Brandon Gray
On Mon, Jul 3, 2017 at 9:54 AM, Kevin Fenzi  wrote:

> You are getting this email because you are in the 'fi-apprentice' group
> in the fedora account system (or are reading this on the infrastructure
> list).
>
> Feel free to reply just directly to me, or cc the infrastructure list
> for everyone to see and comment on.
>
> https://fedoraproject.org/wiki/Infrastructure_Apprentice
>
> At the first of every month(or so), I am going to be sending out an
> email like this one. I would like feedback on how things are going for
> you. I'd like to ask for everyone to send me a quick reply with the
> following data or anything related you can think of that might help us
> make the apprentice program more useful.
>
> 0. Whats your fedora account system login?
>

brandongray


>
> 1. Have you logged in and used your fi-apprentice membership to look at
> our machines/setup in the last month? Do you plan to?
>

Yes


>
> 2. Has it helped you decide any area you wish to focus on or contribute
> to more?
>

Not yet


>
> 3. Have you looked at or been able to work on any of the fi-apprentice
> 'easyfix' tickets?
> https://pagure.io/fedora-infrastructure/issues?status=Open&tags=easyfix


Yep, resolved one and working on another.


>
>
> 4. Do you still wish to be a member of the group? If not (for whatever
> reason) could you provide any hints to help others down the road?
>

Yep


>
> 5. Is there any help or communication or ideas you have that would help
> you do any of the above?
>

Not yet


>
> 6. What do you find to be the hardest part of getting involved? Finding
> things to work on? Getting attention from others to help you? Finding
> tickets in your interest area?
>

Definitely finding things to work on.  I'm looking for more.  :)


>
> 7. Have you been able to make any weekly irc meetings? Do you find them
> helpful or interesting? Do you have any suggestions for changing them?
>

Yep, very interesting.


>
> 8. Have you logged into our Gobby instance and read/seen/added to our
> meeting agenda? https://fedoraproject.org/wiki/Gobby


Yes


>
>
> 9. Since it's summer (at least in the northern hemisphere), what is your
> favorite way to cool down in the summer heat?
>

Pool with the kids!


>
> Any other general feedback is also quite welcome, including improvements
> to this email, the wiki page, etc. Note that we recently revamped the
> getting started and other pages. Please do take a minute to re-read them
> and let me know if they are more clear or need further adjustments.
>
> Any folks I do not hear from in the next week will be removed from the
> group. (Note that it's easy to be readded when you have time or whatever
> and it's nothing at all personal, we just want to keep the group up to
> date with active folks).
>
> Thanks, and looking forward to your feedback!
>
> kevin
>
>
>
>
>
>
> ___
> infrastructure mailing list -- infrastructure@lists.fedoraproject.org
> To unsubscribe send an email to infrastructure-leave@lists.
> fedoraproject.org
>
>
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: retrace / faf issues

2017-07-05 Thread Brandon Gray
Below is a patch to add firewalld to the base_pkg_erase var (used by base
role).  Like the Fedora var, this will remove firewalld from RHEL systems
and should fix the issue below.

>From dc7c5dc38efab1873c43b6a5d85978d44843bc72 Mon Sep 17 00:00:00 2001
From: Brandon Gray 
Date: Wed, 5 Jul 2017 08:12:54 -0500
Subject: [PATCH] added firewalld to base package removal for rhel

---
 vars/RedHat.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vars/RedHat.yml b/vars/RedHat.yml
index bd4c73c..3aff512 100644
--- a/vars/RedHat.yml
+++ b/vars/RedHat.yml
@@ -1,7 +1,7 @@
 ---
 dist_tag: el{{ ansible_distribution_version[0] }}
 base_pkgs_inst: []
-base_pkgs_erase: ['firstboot-tui','bluez-utils', 'sendmail']
+base_pkgs_erase: ['firstboot-tui','bluez-utils', 'sendmail', 'firewalld']
 service_disabled: []
 service_enabled: []
 is_rhel: True
-- 
2.9.4



> That does bring up one more issue: You are using firewalld there and
> aren't allowing our nagios/nrpe. I added a rule to allow port 5666/tcp.
> You might also add this upstream/ansible.
>
>
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: retrace / faf issues

2017-07-19 Thread Brandon Gray
Now that we're out of freeze, is this something that should be committed?

On Wed, Jul 5, 2017 at 10:12 AM, Stephen John Smoogen 
wrote:

> Looks good. I would +1 this
>
> On 5 July 2017 at 09:22, Brandon Gray  wrote:
> > Below is a patch to add firewalld to the base_pkg_erase var (used by base
> > role).  Like the Fedora var, this will remove firewalld from RHEL systems
> > and should fix the issue below.
> >
> > From dc7c5dc38efab1873c43b6a5d85978d44843bc72 Mon Sep 17 00:00:00 2001
> > From: Brandon Gray 
> > Date: Wed, 5 Jul 2017 08:12:54 -0500
> > Subject: [PATCH] added firewalld to base package removal for rhel
> >
> > ---
> >  vars/RedHat.yml | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/vars/RedHat.yml b/vars/RedHat.yml
> > index bd4c73c..3aff512 100644
> > --- a/vars/RedHat.yml
> > +++ b/vars/RedHat.yml
> > @@ -1,7 +1,7 @@
> >  ---
> >  dist_tag: el{{ ansible_distribution_version[0] }}
> >  base_pkgs_inst: []
> > -base_pkgs_erase: ['firstboot-tui','bluez-utils', 'sendmail']
> > +base_pkgs_erase: ['firstboot-tui','bluez-utils', 'sendmail',
> 'firewalld']
> >  service_disabled: []
> >  service_enabled: []
> >  is_rhel: True
> > --
> > 2.9.4
> >
> >
> >>
> >> That does bring up one more issue: You are using firewalld there and
> >> aren't allowing our nagios/nrpe. I added a rule to allow port 5666/tcp.
> >> You might also add this upstream/ansible.
> >>
> >
> > ___
> > infrastructure mailing list -- infrastructure@lists.fedoraproject.org
> > To unsubscribe send an email to infrastructure-leave@lists.
> fedoraproject.org
> >
>
>
>
> --
> Stephen J Smoogen.
> ___
> infrastructure mailing list -- infrastructure@lists.fedoraproject.org
> To unsubscribe send an email to infrastructure-leave@lists.
> fedoraproject.org
>
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org


Re: Aug status update for Fedora Infrastructure Apprentices

2017-08-03 Thread Brandon Gray
On Wed, Aug 2, 2017 at 5:35 PM, Kevin Fenzi  wrote:

> You are getting this email because you are in the 'fi-apprentice' group
> in the fedora account system (or are reading this on the infrastructure
> list).
>
> Feel free to reply just directly to me, or cc the infrastructure list
> for everyone to see and comment on.
>
> https://fedoraproject.org/wiki/Infrastructure_Apprentice
>
> At the first of every month(or so), I am going to be sending out an
> email like this one. I would like feedback on how things are going for
> you. I'd like to ask for everyone to send me a quick reply with the
> following data or anything related you can think of that might help us
> make the apprentice program more useful.
>
> 0. Whats your fedora account system login?

brandongray

>
>
1. Have you logged in and used your fi-apprentice membership to look at
> our machines/setup in the last month? Do you plan to?
>
Yes

>
> 2. Has it helped you decide any area you wish to focus on or contribute
> to more?
>
Not really

>
> 3. Have you looked at or been able to work on any of the fi-apprentice
> 'easyfix' tickets?
> https://pagure.io/fedora-infrastructure/issues?status=Open&tags=easyfix

Yes

>
> 4. Do you still wish to be a member of the group? If not (for whatever
> reason) could you provide any hints to help others down the road?
>
Yep

>
> 5. Is there any help or communication or ideas you have that would help
> you do any of the above?
>
No

>
> 6. What do you find to be the hardest part of getting involved? Finding
> things to work on? Getting attention from others to help you? Finding
> tickets in your interest area?
>
Finding things to work one

>
> 7. Have you been able to make any weekly irc meetings? Do you find them
> helpful or interesting? Do you have any suggestions for changing them?
>
Yes, I've made them all.  They are interesting and well run!

>
> 8. Have you logged into our Gobby instance and read/seen/added to our
> meeting agenda? https://fedoraproject.org/wiki/Gobby

Yep, I've read/seen but never added to the agenda.

>
>
> 9. What are the top 5 commands you run by number? You can get these with
> something like:
>
> history | awk '{print $2}' | sort | uniq -c | sort -nr | head -5
>
> (or something more clever of your own devising)
>

>From home computer -
210 ls
161 cd
124 git
102 vagrant
 77 vi

>
> Any other general feedback is also quite welcome, including improvements
> to this email, the wiki page, etc. Note that we recently revamped the
> getting started and other pages. Please do take a minute to re-read them
> and let me know if they are more clear or need further adjustments.
>
> Any folks I do not hear from in the next week will be removed from the
> group. (Note that it's easy to be readded when you have time or whatever
> and it's nothing at all personal, we just want to keep the group up
> todate with active folks).
>
> Thanks, and looking forward to your feedback!
>
> kevin
>
>
>
>
>
>
>
>
> ___
> infrastructure mailing list -- infrastructure@lists.fedoraproject.org
> To unsubscribe send an email to infrastructure-leave@lists.
> fedoraproject.org
>
>
___
infrastructure mailing list -- infrastructure@lists.fedoraproject.org
To unsubscribe send an email to infrastructure-le...@lists.fedoraproject.org