<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
    <channel>
        <title>Go Build</title>
        <link>http://lewisdenny.io/</link>
        <description>Blog for documenting things as I learn them</description>
        <generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>lewisdenny@me.com (Lewis Denny)</managingEditor>
            <webMaster>lewisdenny@me.com (Lewis Denny)</webMaster><lastBuildDate>Thu, 16 Mar 2023 11:09:50 &#43;1000</lastBuildDate>
            <atom:link href="http://lewisdenny.io/index.xml" rel="self" type="application/rss+xml" />
        <item>
    <title>Inspecting the Operator Catalog</title>
    <link>http://lewisdenny.io/openshift_catalog/</link>
    <pubDate>Thu, 16 Mar 2023 11:09:50 &#43;1000</pubDate><author>lewisdenny@me.com (Lewis Denny)</author><guid>http://lewisdenny.io/openshift_catalog/</guid>
    <description><![CDATA[<p>If you find yourself wondering why an operator doesn&rsquo;t show an available upgrade, or
you would like to install a specific version or an operator but need to know what&rsquo;s available this guide will help.</p>]]></description>
</item>
<item>
    <title>Deploying OpenStack Operators on OpenShift</title>
    <link>http://lewisdenny.io/openstack_operator_deployment/</link>
    <pubDate>Thu, 23 Feb 2023 21:26:04 &#43;1000</pubDate><author>lewisdenny@me.com (Lewis Denny)</author><guid>http://lewisdenny.io/openstack_operator_deployment/</guid>
    <description><![CDATA[<p>This document will provide an overview for quickly deploying OpenStack operators on an OpenShift cluster for testing and development.</p>]]></description>
</item>
<item>
    <title>Deploying Virtual Multi-node OpenShift Cluster with Metal3</title>
    <link>http://lewisdenny.io/openshift_metal3_deployment/</link>
    <pubDate>Sun, 19 Feb 2023 19:29:54 &#43;1000</pubDate><author>lewisdenny@me.com (Lewis Denny)</author><guid>http://lewisdenny.io/openshift_metal3_deployment/</guid>
    <description><![CDATA[<p>This document will provide an overview for quickly deploying a reproducer/development lab using OpenShift-metal3.</p>]]></description>
</item>
<item>
    <title>How to use Go Benchmarking</title>
    <link>http://lewisdenny.io/go_benchmarking/</link>
    <pubDate>Mon, 23 Jan 2023 10:26:49 &#43;1000</pubDate><author>lewisdenny@me.com (Lewis Denny)</author><guid>http://lewisdenny.io/go_benchmarking/</guid>
    <description><![CDATA[<p>This article covers how to use Go&rsquo;s built in benchmarking tools</p>]]></description>
</item>
<item>
    <title>Deploying Openshift on OpenStack for development</title>
    <link>http://lewisdenny.io/deploying_openshift_on_openstack/</link>
    <pubDate>Tue, 13 Dec 2022 12:48:49 &#43;1000</pubDate><author>lewisdenny@me.com (Lewis Denny)</author><guid>http://lewisdenny.io/deploying_openshift_on_openstack/</guid>
    <description><![CDATA[<p>This article documents how to deploy a OpenShift on top of standalone OpenStack 16.2 environment great for single server development environment.</p>]]></description>
</item>
<item>
    <title>Deploying standalone OpenStack using dev-install</title>
    <link>http://lewisdenny.io/deploying_openstack_using_devinstall/</link>
    <pubDate>Sun, 11 Dec 2022 09:48:49 &#43;1000</pubDate><author>lewisdenny@me.com (Lewis Denny)</author><guid>http://lewisdenny.io/deploying_openstack_using_devinstall/</guid>
    <description><![CDATA[<p>This article documents how to deploy a standalone OpenStack 16.2 environment great for development</p>]]></description>
</item>
<item>
    <title>How to trace packets in OVN</title>
    <link>http://lewisdenny.io/how_to_trace_packets_in_ovn/</link>
    <pubDate>Fri, 03 Jun 2022 09:48:49 &#43;1000</pubDate><author>lewisdenny@me.com (Lewis Denny)</author><guid>http://lewisdenny.io/how_to_trace_packets_in_ovn/</guid>
    <description><![CDATA[<p>This article documents how to trace packets in RHOSP16 with ml2_ovn with examples for DVR and non DVR environments</p>]]></description>
</item>
<item>
    <title>Tracing Packets Out an External Network With OVN</title>
    <link>http://lewisdenny.io/tracing_packets_out_an_external_network_with_ovn/</link>
    <pubDate>Mon, 21 Feb 2022 20:18:43 &#43;1000</pubDate><author>lewisdenny@me.com (Lewis Denny)</author><guid>http://lewisdenny.io/tracing_packets_out_an_external_network_with_ovn/</guid>
    <description><![CDATA[<p>This article documents how to trace packets out of a external network in RHOSP16 with ml2_ovn</p>]]></description>
</item>
<item>
    <title>C Data Types</title>
    <link>http://lewisdenny.io/c_data_types/</link>
    <pubDate>Thu, 06 Jan 2022 16:11:11 &#43;1000</pubDate><author>lewisdenny@me.com (Lewis Denny)</author><guid>http://lewisdenny.io/c_data_types/</guid>
    <description><![CDATA[C data types referance guide Type Explanation Minimum size (bits) Format specifier char Smallest addressable unit of the machine that can contain basic character set. It is an integer type. Actual type can be either signed or unsigned. 8 %c signed char Of the same size as char, but guaranteed to be signed. Capable of containing at least the [−127, +127] range. 8 %c (or %hhi for numerical output) unsigned char Of the same size as char, but guaranteed to be unsigned.]]></description>
</item>
<item>
    <title>Openstack Test Instance Playbook</title>
    <link>http://lewisdenny.io/openstack_test_instance_playbook/</link>
    <pubDate>Sat, 27 Nov 2021 21:42:15 &#43;1000</pubDate><author>lewisdenny@me.com (Lewis Denny)</author><guid>http://lewisdenny.io/openstack_test_instance_playbook/</guid>
    <description><![CDATA[Once your OpenStack environment is deployed you will probably want to test it out or get stuck into testing other things without wanting to worry about creating all the resources required for spinning up a small instance. The following playbook can be modified easily for your needs, more thorough testing can be performed using Tempest:
Usage source overcloudrc curl https://gitlab.com/lewisdenny/ansible/-/raw/master/deploying_openstack_instances/provider-network-instance.yaml -O ansible-playbook provider-network-instance.yaml Source --- - name: Configure everything needed to deploy Cirros image hosts: localhost gather_facts: no tasks: - name: Download Cirros get_url: url: https://download.]]></description>
</item>
</channel>
</rss>
