<!-- 
RSS generated by JIRA (1001.0.0-SNAPSHOT#100246-sha1:7a5c50119eb0633d306e14180817ddef5e80c75d) at Thu Feb 08 23:22:14 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary add field=key&field=summary to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>FOLIO Jira</title>
    <link>https://folio-org.atlassian.net</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>1001.0.0-SNAPSHOT</version>
        <build-number>100246</build-number>
        <build-date>07-02-2024</build-date>
    </build-info>

<item>
            <title>[FOLIO-2650] Provision new EKS cluster to replace folio-eks-1-us-west-2</title>
                <link>https://folio-org.atlassian.net/browse/FOLIO-2650</link>
                <project id="10290" key="FOLIO">FOLIO</project>
                    <description>&lt;p&gt;Due to unresolvable networking issues in 
    &lt;span class=&quot;jira-issue-macro resolved&quot; data-jira-key=&quot;FOLIO-2649&quot; &gt;
                &lt;a href=&quot;https://folio-org.atlassian.net/browse/FOLIO-2649&quot; class=&quot;jira-issue-macro-key issue-link&quot;  title=&quot;Rancher pipelines fail on Build Docker step on folio-eks-1-us-west-2&quot; &gt;
            &lt;img class=&quot;icon&quot; src=&quot;https://folio-org.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10303?size=medium&quot; /&gt;
            FOLIO-2649
        &lt;/a&gt;
                                                    &lt;span class=&quot;aui-lozenge aui-lozenge-subtle aui-lozenge-success jira-macro-single-issue-export-pdf&quot;&gt;Closed&lt;/span&gt;
            &lt;/span&gt;
,  a new EKS cluster needs to be set up and imported into Rancher. &lt;/p&gt;</description>
                <environment></environment>
        <key id="81678">FOLIO-2650</key>
            <summary>Provision new EKS cluster to replace folio-eks-1-us-west-2</summary>
                <type id="10003" iconUrl="https://folio-org.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium">Task</type>
                                            <priority id="10001" iconUrl="https://dev.folio.org/assets/jira-priority/jira-p2.svg">P2</priority>
                        <status id="6" iconUrl="https://folio-org.atlassian.net/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="green"/>
                                    <resolution id="10003">Done</resolution>
                                                        <assignee accountid="5f9abc1eb45b2e007453f423">John Malconian</assignee>
                                                                <reporter accountid="5f9abc1eb45b2e007453f423">John Malconian</reporter>
                                    <labels>
                    </labels>
                <created>Wed, 17 Jun 2020 20:52:58 +0000</created>
                <updated>Fri, 19 Jun 2020 01:28:58 +0000</updated>
                            <resolved>Fri, 19 Jun 2020 01:28:58 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>7</watches>
                                                                <comments>
                                                            <comment id="199140" author="5f9abc1eb45b2e007453f423" created="Wed, 17 Jun 2020 21:18:55 +0000"  >&lt;p&gt;EKS cluster, folio-eks-2-us-west-2, is up and fully functional.  I&apos;ve imported it into Rancher as well.     Important items to note: &lt;/p&gt;

&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;The new EKS cluster is running K8s version 1.16.   Some deprecated API versions have been removed in this version and will no longer work.  Please see &lt;a href=&quot;https://kubernetes.io/blog/2019/07/18/api-deprecations-in-1-16&quot; class=&quot;external-link&quot; rel=&quot;nofollow noreferrer&quot;&gt;https://kubernetes.io/blog/2019/07/18/api-deprecations-in-1-16&lt;/a&gt; for additional details.&lt;/li&gt;
&lt;/ul&gt;


&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;Ingress manifests should include the following annotations:&lt;/li&gt;
&lt;/ul&gt;


&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;annotations:
    kubernetes.io/ingress.class: &quot;nginx&quot;
    external-dns.alpha.kubernetes.io/target: &quot;f2b6996c-kubesystem-albing-accc-1096161577.us-west-2.elb.amazonaws.com&quot;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;external-dns.alpha.kubernetes.io/target: &quot;f2b6996c-kubesystem-albing-accc-1096161577.us-west-2.elb.amazonaws.com&quot; will automatically create an A record DNS entry for YOUR_HOSTNAME.ci.folio.org in Route53 and resolve it to the AWS ALB that handles all ingress into the cluster and passes it off to nginx running inside the cluster.     Example simple ingress config for okapi below:&lt;/p&gt;

&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
  name: okapi-test
  namespace: okapi-test
  annotations:
    kubernetes.io/ingress.class: &quot;nginx&quot;
    external-dns.alpha.kubernetes.io/target: &quot;f2b6996c-kubesystem-albing-accc-1096161577.us-west-2.elb.amazonaws.com&quot;
spec:
  rules:
    - host: okapi-test.ci.folio.org
      http:
        paths:
          - path: /
            backend:
              serviceName: okapi-test
              servicePort: 9130
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                                                            <comment id="199143" author="5f9abc1eb45b2e007453f423" created="Wed, 17 Jun 2020 21:21:14 +0000"  >&lt;p&gt;Still need to provision a bastion host on the new VPC so that we can access worker nodes via SSH. &lt;/p&gt;</comment>
                                                            <comment id="199146" author="5f9abc1eb45b2e007453f423" created="Fri, 19 Jun 2020 01:28:35 +0000"  >&lt;p&gt;Closing this.  Will create new issue for bastion host. &lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10003">
                    <name>Relates</name>
                                                                <inwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="81677">FOLIO-2649</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10000" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummarycf">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10057" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Development Team</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10155"><![CDATA[FOLIO DevOps]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10019" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i01b27:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10020" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="1878">DevOps: sprint 90</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10025" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>[CHART] Time in Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                    </customfields>
    </item>
</channel>
</rss>