<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://all.docs.genesys.com/index.php?action=history&amp;feed=atom&amp;title=GWS%2FCurrent%2FGWSPEGuide%2FProvisionAS</id>
	<title>GWS/Current/GWSPEGuide/ProvisionAS - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://all.docs.genesys.com/index.php?action=history&amp;feed=atom&amp;title=GWS%2FCurrent%2FGWSPEGuide%2FProvisionAS"/>
	<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=GWS/Current/GWSPEGuide/ProvisionAS&amp;action=history"/>
	<updated>2026-05-15T15:36:25Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.31.1</generator>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=GWS/Current/GWSPEGuide/ProvisionAS&amp;diff=120714&amp;oldid=prev</id>
		<title>WikiSysop: Redirected page to GWS/Current/GWSPEGuide/Provision#createAS</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=GWS/Current/GWSPEGuide/ProvisionAS&amp;diff=120714&amp;oldid=prev"/>
		<updated>2022-05-24T19:31:08Z</updated>

		<summary type="html">&lt;p&gt;Redirected page to &lt;a href=&quot;/GWS/Current/GWSPEGuide/Provision#createAS&quot; title=&quot;GWS/Current/GWSPEGuide/Provision&quot;&gt;GWS/Current/GWSPEGuide/Provision#createAS&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;#REDIRECT [[GWS/Current/GWSPEGuide/Provision#createAS]]{{Article&lt;br /&gt;
|Standalone=No&lt;br /&gt;
|DisplayName=Provision Agent Setup&lt;br /&gt;
|Context=Learn how to provision Agent Setup.&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|Role=Administrator&lt;br /&gt;
|Section={{Section&lt;br /&gt;
|sectionHeading=Prerequisites&lt;br /&gt;
|alignment=Vertical&lt;br /&gt;
|structuredtext=Agent Setup is used to manage the controls and settings that run the contact center and enable the users within it to handle and manage interactions. &lt;br /&gt;
&lt;br /&gt;
Agent Setup is part of Genesys Web Services and Applications (GWS) and must be enabled when deploying GWS services.&lt;br /&gt;
|Status=No&lt;br /&gt;
}}{{Section&lt;br /&gt;
|sectionHeading=Provisioning in OpenShift&lt;br /&gt;
|alignment=Vertical&lt;br /&gt;
|structuredtext=To provision Agent Setup you must run the following commands in order to create https access routes for both &amp;lt;code&amp;gt;gws-app-provisioning&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;gws-ui-provisioning&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
 oc create route edge --service=gws-ui-provisioning-blue-srv --hostname=&amp;lt;hostname&amp;gt; --path /ui/provisioning&lt;br /&gt;
 &lt;br /&gt;
 oc create route edge --service=gws-app-provisioning-blue-srv --hostname=&amp;lt;hostname&amp;gt; --path /provisioning&lt;br /&gt;
&lt;br /&gt;
Genesys recommends the hostname format prov.&amp;lt;cluster-subdomain&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=====Example=====&lt;br /&gt;
For VCE cluster (&amp;lt;nowiki&amp;gt;https://console-openshift-console.apps&amp;lt;/nowiki&amp;gt;.&amp;lt;yourclusterdomain&amp;gt;.com/), the host name should be prov.apps.&amp;lt;yourclusterdomain&amp;gt;.com&lt;br /&gt;
|Status=No&lt;br /&gt;
}}{{Section&lt;br /&gt;
|sectionHeading=Provisioning in GKE&lt;br /&gt;
|alignment=Vertical&lt;br /&gt;
|structuredtext=====Create provisioning-ingress.yaml====&lt;br /&gt;
{{NoteFormat|In this example the &amp;lt;tt&amp;gt;namespace&amp;lt;/tt&amp;gt; is set specifically to gws in the yaml file.  Adjust accordingly for your deployment.|}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
apiVersion: extensions/v1beta1&lt;br /&gt;
kind: Ingress&lt;br /&gt;
metadata:&lt;br /&gt;
  name: prov-ingress&lt;br /&gt;
  namespace: gws&lt;br /&gt;
  annotations:&lt;br /&gt;
    # add an annotation indicating the issuer to use.&lt;br /&gt;
    cert-manager.io/cluster-issuer: &amp;quot;&amp;lt;cluster-issuer&amp;gt;&amp;quot;&lt;br /&gt;
    # Custom annotations for NGINX Ingress Controller&lt;br /&gt;
    kubernetes.io/ingress.class: &amp;quot;nginx&amp;quot;&lt;br /&gt;
    nginx.ingress.kubernetes.io/ssl-redirect: &amp;quot;false&amp;quot;&lt;br /&gt;
    nginx.ingress.kubernetes.io/use-regex: &amp;quot;true&amp;quot;&lt;br /&gt;
spec:&lt;br /&gt;
  rules:&lt;br /&gt;
  - host: prov.&amp;lt;domain&amp;gt; - e.g. prov.test.dev&lt;br /&gt;
    http:&lt;br /&gt;
      paths:&lt;br /&gt;
        - path: /ui/provisioning/.*&lt;br /&gt;
          backend:&lt;br /&gt;
            serviceName:  gws-ui-provisioning-blue-srv&lt;br /&gt;
            servicePort: 80&lt;br /&gt;
        - path: /provisioning/.*&lt;br /&gt;
          backend:&lt;br /&gt;
            serviceName:  gws-app-provisioning-blue-srv&lt;br /&gt;
            servicePort: 80&lt;br /&gt;
  tls:&lt;br /&gt;
  - hosts:&lt;br /&gt;
    - prov.&amp;lt;domain&amp;gt; - e.g. prov.test.dev&lt;br /&gt;
    secretName: prov-ingress-cert&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Apply the yaml file to your namespace====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
kubectl apply -f provisioning-ingress.yaml -n gws&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Create an Agent Admin User====&lt;br /&gt;
{{NoteFormat|The Tenant service should be running and able to access Configuration Server.|}}&lt;br /&gt;
&lt;br /&gt;
#Log in to Configuration Manager.&lt;br /&gt;
#Create a '''Person''' (uncheck '''isAgent''' Checkbox) with '''userName''': &amp;lt;code&amp;gt;AgentAdmin&amp;lt;/code&amp;gt;.&lt;br /&gt;
#Add the created user to the '''Users''' access group as well as to the '''Agent Setup Administrators''' group.&lt;br /&gt;
|Status=No&lt;br /&gt;
}}{{Section&lt;br /&gt;
|sectionHeading=Next Step&lt;br /&gt;
|alignment=Vertical&lt;br /&gt;
|structuredtext=Launch Agent Setup using the URL '''https://&amp;lt;hostname&amp;gt;/ui/provisioning'''.&lt;br /&gt;
&lt;br /&gt;
Refer to {{Link-AnywhereElse|product=PEC-AS|version=Current|manual=ManageCC|topic=Getting_started|display text=Get started with Agent Setup}} for more information.&lt;br /&gt;
|Status=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>WikiSysop</name></author>
		
	</entry>
</feed>