 <?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.analytica.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Naresh</id>
	<title>Analytica Docs - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.analytica.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Naresh"/>
	<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php/Special:Contributions/Naresh"/>
	<updated>2026-05-22T17:33:20Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.9</generator>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62427</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62427"/>
		<updated>2025-04-01T08:16:40Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;                  Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed. &lt;br /&gt;
[[File:Image.png|left|thumb]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. We have used step 1  to create custom ACP docker image&lt;br /&gt;
[[File:ACP Session Image.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is screenshot where we are tagging the image as per the GCP repo , so that we can push the image to GCP&lt;br /&gt;
&lt;br /&gt;
[[File:Acp session tagged images.png|center|thumb]]As per below Screenshot we are tagging the image and pushing it to the GCP repo.&lt;br /&gt;
&lt;br /&gt;
[[File:Custom Image tagging and Pushing to GCP.png|center|thumb]]We can check list of images which are pushed to acp-repo in the GCP k8s by using the below command &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''gcloud artifacts docker images list us-west1-docker.pkg.dev/supple-lattice-206522/acp-repo'''&lt;br /&gt;
&lt;br /&gt;
From GCP , K8s we need to deploy the mariadb pod using the acp_mariadb.yaml.&lt;br /&gt;
&lt;br /&gt;
10GB Volume is created in GCP using the create_pvc.yml file which is sued for mariadb to store data&lt;br /&gt;
[[File:Create pvc.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below Steps are performed by using this below acp_mariadb.yaml file&lt;br /&gt;
&lt;br /&gt;
1.We are using separate namespace called acp-dev &lt;br /&gt;
&lt;br /&gt;
2.We are using the custom image which we pushed to GCP repo&lt;br /&gt;
&lt;br /&gt;
3. We are attaching a 10GB volume to store mariadb db data &lt;br /&gt;
[[File:Acp mariadb yaml file .png|center|thumb]]We need to deploy mariadb service acp_mariadb_service.yml while deploying acp_session pod we will provide the details of mariadb service to connect with mariadb from acp_session pod  &lt;br /&gt;
&lt;br /&gt;
Below is the yaml for mariadb_service  &lt;br /&gt;
&lt;br /&gt;
[[File:Acp mariadb service yaml file.png|center|thumb]]We need to deploy acp_session yaml file which contains mariadb service &lt;br /&gt;
&lt;br /&gt;
One more important thing , we need to remember is , the acp session pod should be running on the windows node , so for the acp session pod to be running only on windows node we need provide toleration in the yaml file so that whenever  a new pod is getting created for acp session it has scheduled on windows node&lt;br /&gt;
&lt;br /&gt;
[[File:Acp toleration for windows.png|center|thumb]]&lt;br /&gt;
[[File:ACP Session yaml file.png|center|thumb]]&lt;br /&gt;
BY using the below command , we can check the pods which are deployed for mariadb and acp_session&lt;br /&gt;
&lt;br /&gt;
'''kubectl get pods''' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To check on which nodes the pods are running on , we can use below command &lt;br /&gt;
&lt;br /&gt;
'''kubectl  get pods -o wide'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once the acp_session pod is created we can test the connectivity from acp pod  to mariadb service&lt;br /&gt;
&lt;br /&gt;
[[File:ACP POD.png|center|thumb]]&lt;br /&gt;
Once we connect with acp pod using powershell , we can run the sql command with hostname as mariadb service name to check the connectivity&lt;br /&gt;
&lt;br /&gt;
[[File:Mariadb db connectivity testing from acp pod.png|center|thumb]]To ingress load balancer , we create the service for the acp_session using the acp_session_service.yml file&lt;br /&gt;
&lt;br /&gt;
[[File:Acp session service.png|center|thumb]]&lt;br /&gt;
Once this is done , we will deploy acp_ingress yaml file it will do below steps&lt;br /&gt;
&lt;br /&gt;
# It will create TLS cert using letsEncrypt&lt;br /&gt;
# We will provide custom domain to be used here we are using acp-dev.analytica.com&lt;br /&gt;
# The custom domain is mapped to acp_session_service&lt;br /&gt;
&lt;br /&gt;
[[File:Acp ingress controller.png|center|thumb]]We can check url if the acp_session  is working   https://acp-dev.analytica.com/&lt;br /&gt;
&lt;br /&gt;
[[File:Acp url .png|center|thumb]]&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=File:Acp_url_.png&amp;diff=62426</id>
		<title>File:Acp url .png</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=File:Acp_url_.png&amp;diff=62426"/>
		<updated>2025-04-01T08:16:02Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;acp url&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62425</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62425"/>
		<updated>2025-04-01T08:14:28Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;                 Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed. &lt;br /&gt;
[[File:Image.png|left|thumb]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. We have used step 1  to create custom ACP docker image&lt;br /&gt;
[[File:ACP Session Image.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is screenshot where we are tagging the image as per the GCP repo , so that we can push the image to GCP&lt;br /&gt;
&lt;br /&gt;
[[File:Acp session tagged images.png|center|thumb]]As per below Screenshot we are tagging the image and pushing it to the GCP repo.&lt;br /&gt;
&lt;br /&gt;
[[File:Custom Image tagging and Pushing to GCP.png|center|thumb]]We can check list of images which are pushed to acp-repo in the GCP k8s by using the below command &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''gcloud artifacts docker images list us-west1-docker.pkg.dev/supple-lattice-206522/acp-repo'''&lt;br /&gt;
&lt;br /&gt;
From GCP , K8s we need to deploy the mariadb pod using the acp_mariadb.yaml.&lt;br /&gt;
&lt;br /&gt;
10GB Volume is created in GCP using the create_pvc.yml file which is sued for mariadb to store data&lt;br /&gt;
[[File:Create pvc.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below Steps are performed by using this below acp_mariadb.yaml file&lt;br /&gt;
&lt;br /&gt;
1.We are using separate namespace called acp-dev &lt;br /&gt;
&lt;br /&gt;
2.We are using the custom image which we pushed to GCP repo&lt;br /&gt;
&lt;br /&gt;
3. We are attaching a 10GB volume to store mariadb db data &lt;br /&gt;
[[File:Acp mariadb yaml file .png|center|thumb]]We need to deploy mariadb service acp_mariadb_service.yml while deploying acp_session pod we will provide the details of mariadb service to connect with mariadb from acp_session pod  &lt;br /&gt;
&lt;br /&gt;
Below is the yaml for mariadb_service  &lt;br /&gt;
&lt;br /&gt;
[[File:Acp mariadb service yaml file.png|center|thumb]]We need to deploy acp_session yaml file which contains mariadb service &lt;br /&gt;
&lt;br /&gt;
One more important thing , we need to remember is , the acp session pod should be running on the windows node , so for the acp session pod to be running only on windows node we need provide toleration in the yaml file so that whenever  a new pod is getting created for acp session it has scheduled on windows node&lt;br /&gt;
&lt;br /&gt;
[[File:Acp toleration for windows.png|center|thumb]]&lt;br /&gt;
[[File:ACP Session yaml file.png|center|thumb]]&lt;br /&gt;
BY using the below command , we can check the pods which are deployed for mariadb and acp_session&lt;br /&gt;
&lt;br /&gt;
'''kubectl get pods''' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To check on which nodes the pods are running on , we can use below command &lt;br /&gt;
&lt;br /&gt;
'''kubectl  get pods -o wide'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once the acp_session pod is created we can test the connectivity from acp pod  to mariadb service&lt;br /&gt;
&lt;br /&gt;
[[File:ACP POD.png|center|thumb]]&lt;br /&gt;
Once we connect with acp pod using powershell , we can run the sql command with hostname as mariadb service name to check the connectivity&lt;br /&gt;
&lt;br /&gt;
[[File:Mariadb db connectivity testing from acp pod.png|center|thumb]]To ingress load balancer , we create the service for the acp_session using the acp_session_service.yml file&lt;br /&gt;
&lt;br /&gt;
[[File:Acp session service.png|center|thumb]]&lt;br /&gt;
Once this is done , we will deploy acp_ingress yaml file it will do below steps&lt;br /&gt;
&lt;br /&gt;
# It will create TLS cert using letsEncrypt&lt;br /&gt;
# We will provide custom domain to be used here we are using acp-dev.analytica.com&lt;br /&gt;
# The custom domain is mapped to acp_session_service&lt;br /&gt;
&lt;br /&gt;
[[File:Acp ingress controller.png|center|thumb]]&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=File:Acp_ingress_controller.png&amp;diff=62424</id>
		<title>File:Acp ingress controller.png</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=File:Acp_ingress_controller.png&amp;diff=62424"/>
		<updated>2025-04-01T08:14:09Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;acp ingress controller&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=File:Acp_session_service.png&amp;diff=62423</id>
		<title>File:Acp session service.png</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=File:Acp_session_service.png&amp;diff=62423"/>
		<updated>2025-04-01T08:10:10Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;acp session service&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62422</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62422"/>
		<updated>2025-04-01T08:08:00Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;                Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed. &lt;br /&gt;
[[File:Image.png|left|thumb]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. We have used step 1  to create custom ACP docker image&lt;br /&gt;
[[File:ACP Session Image.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is screenshot where we are tagging the image as per the GCP repo , so that we can push the image to GCP&lt;br /&gt;
&lt;br /&gt;
[[File:Acp session tagged images.png|center|thumb]]As per below Screenshot we are tagging the image and pushing it to the GCP repo.&lt;br /&gt;
&lt;br /&gt;
[[File:Custom Image tagging and Pushing to GCP.png|center|thumb]]We can check list of images which are pushed to acp-repo in the GCP k8s by using the below command &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''gcloud artifacts docker images list us-west1-docker.pkg.dev/supple-lattice-206522/acp-repo'''&lt;br /&gt;
&lt;br /&gt;
From GCP , K8s we need to deploy the mariadb pod using the acp_mariadb.yaml.&lt;br /&gt;
&lt;br /&gt;
10GB Volume is created in GCP using the create_pvc.yml file which is sued for mariadb to store data&lt;br /&gt;
[[File:Create pvc.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below Steps are performed by using this below acp_mariadb.yaml file&lt;br /&gt;
&lt;br /&gt;
1.We are using separate namespace called acp-dev &lt;br /&gt;
&lt;br /&gt;
2.We are using the custom image which we pushed to GCP repo&lt;br /&gt;
&lt;br /&gt;
3. We are attaching a 10GB volume to store mariadb db data &lt;br /&gt;
[[File:Acp mariadb yaml file .png|center|thumb]]We need to deploy mariadb service acp_mariadb_service.yml while deploying acp_session pod we will provide the details of mariadb service to connect with mariadb from acp_session pod  &lt;br /&gt;
&lt;br /&gt;
Below is the yaml for mariadb_service  &lt;br /&gt;
&lt;br /&gt;
[[File:Acp mariadb service yaml file.png|center|thumb]]We need to deploy acp_session yaml file which contains mariadb service &lt;br /&gt;
&lt;br /&gt;
One more important thing , we need to remember is , the acp session pod should be running on the windows node , so for the acp session pod to be running only on windows node we need provide toleration in the yaml file so that whenever  a new pod is getting created for acp session it has scheduled on windows node&lt;br /&gt;
&lt;br /&gt;
[[File:Acp toleration for windows.png|center|thumb]]&lt;br /&gt;
[[File:ACP Session yaml file.png|center|thumb]]&lt;br /&gt;
BY using the below command , we can check the pods which are deployed for mariadb and acp_session&lt;br /&gt;
&lt;br /&gt;
'''kubectl get pods''' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To check on which nodes the pods are running on , we can use below command &lt;br /&gt;
&lt;br /&gt;
'''kubectl  get pods -o wide'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once the acp_session pod is created we can test the connectivity from acp pod  to mariadb service&lt;br /&gt;
&lt;br /&gt;
[[File:ACP POD.png|center|thumb]]&lt;br /&gt;
Once we connect with acp pod using powershell , we can run the sql command with hostname as mariadb service name to check the connectivity&lt;br /&gt;
&lt;br /&gt;
[[File:Mariadb db connectivity testing from acp pod.png|center|thumb]]&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=File:Mariadb_db_connectivity_testing_from_acp_pod.png&amp;diff=62421</id>
		<title>File:Mariadb db connectivity testing from acp pod.png</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=File:Mariadb_db_connectivity_testing_from_acp_pod.png&amp;diff=62421"/>
		<updated>2025-04-01T08:07:07Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;mariadb db connectivity testing from acp pod&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=File:ACP_POD.png&amp;diff=62420</id>
		<title>File:ACP POD.png</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=File:ACP_POD.png&amp;diff=62420"/>
		<updated>2025-04-01T08:05:05Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ACP POD&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62419</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62419"/>
		<updated>2025-04-01T07:59:47Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;               Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed. &lt;br /&gt;
[[File:Image.png|left|thumb]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. We have used step 1  to create custom ACP docker image&lt;br /&gt;
[[File:ACP Session Image.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is screenshot where we are tagging the image as per the GCP repo , so that we can push the image to GCP&lt;br /&gt;
&lt;br /&gt;
[[File:Acp session tagged images.png|center|thumb]]As per below Screenshot we are tagging the image and pushing it to the GCP repo.&lt;br /&gt;
&lt;br /&gt;
[[File:Custom Image tagging and Pushing to GCP.png|center|thumb]]We can check list of images which are pushed to acp-repo in the GCP k8s by using the below command &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''gcloud artifacts docker images list us-west1-docker.pkg.dev/supple-lattice-206522/acp-repo'''&lt;br /&gt;
&lt;br /&gt;
From GCP , K8s we need to deploy the mariadb pod using the acp_mariadb.yaml.&lt;br /&gt;
&lt;br /&gt;
10GB Volume is created in GCP using the create_pvc.yml file which is sued for mariadb to store data&lt;br /&gt;
[[File:Create pvc.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below Steps are performed by using this below acp_mariadb.yaml file&lt;br /&gt;
&lt;br /&gt;
1.We are using separate namespace called acp-dev &lt;br /&gt;
&lt;br /&gt;
2.We are using the custom image which we pushed to GCP repo&lt;br /&gt;
&lt;br /&gt;
3. We are attaching a 10GB volume to store mariadb db data &lt;br /&gt;
[[File:Acp mariadb yaml file .png|center|thumb]]We need to deploy mariadb service acp_mariadb_service.yml while deploying acp_session pod we will provide the details of mariadb service to connect with mariadb from acp_session pod  &lt;br /&gt;
&lt;br /&gt;
Below is the yaml for mariadb_service  &lt;br /&gt;
&lt;br /&gt;
[[File:Acp mariadb service yaml file.png|center|thumb]]We need to deploy acp_session yaml file which contains mariadb service &lt;br /&gt;
&lt;br /&gt;
One more important thing , we need to remember is , the acp session pod should be running on the windows node , so for the acp session pod to be running only on windows node we need provide toleration in the yaml file so that whenever  a new pod is getting created for acp session it has scheduled on windows node&lt;br /&gt;
&lt;br /&gt;
[[File:Acp toleration for windows.png|center|thumb]]&lt;br /&gt;
[[File:ACP Session yaml file.png|center|thumb]]&lt;br /&gt;
BY using the below command , we can check the pods which are deployed for mariadb and acp_session&lt;br /&gt;
&lt;br /&gt;
'''kubectl get pods''' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To check on which nodes the pods are running on , we can use below command &lt;br /&gt;
&lt;br /&gt;
'''kubectl  get pods -o wide'''&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=File:Acp_toleration_for_windows.png&amp;diff=62418</id>
		<title>File:Acp toleration for windows.png</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=File:Acp_toleration_for_windows.png&amp;diff=62418"/>
		<updated>2025-04-01T07:59:34Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;acp toleration for windows&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=File:ACP_Session_yaml_file.png&amp;diff=62417</id>
		<title>File:ACP Session yaml file.png</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=File:ACP_Session_yaml_file.png&amp;diff=62417"/>
		<updated>2025-04-01T07:52:17Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ACP session yaml file&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62416</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62416"/>
		<updated>2025-04-01T07:49:31Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;              Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed. &lt;br /&gt;
[[File:Image.png|left|thumb]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. We have used step 1  to create custom ACP docker image&lt;br /&gt;
[[File:ACP Session Image.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is screenshot where we are tagging the image as per the GCP repo , so that we can push the image to GCP&lt;br /&gt;
&lt;br /&gt;
[[File:Acp session tagged images.png|center|thumb]]As per below Screenshot we are tagging the image and pushing it to the GCP repo.&lt;br /&gt;
&lt;br /&gt;
[[File:Custom Image tagging and Pushing to GCP.png|center|thumb]]We can check list of images which are pushed to acp-repo in the GCP k8s by using the below command &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''gcloud artifacts docker images list us-west1-docker.pkg.dev/supple-lattice-206522/acp-repo'''&lt;br /&gt;
&lt;br /&gt;
From GCP , K8s we need to deploy the mariadb pod using the acp_mariadb.yaml.&lt;br /&gt;
&lt;br /&gt;
10GB Volume is created in GCP using the create_pvc.yml file which is sued for mariadb to store data&lt;br /&gt;
[[File:Create pvc.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below Steps are performed by using this below acp_mariadb.yaml file&lt;br /&gt;
&lt;br /&gt;
1.We are using separate namespace called acp-dev &lt;br /&gt;
&lt;br /&gt;
2.We are using the custom image which we pushed to GCP repo&lt;br /&gt;
&lt;br /&gt;
3. We are attaching a 10GB volume to store mariadb db data &lt;br /&gt;
[[File:Acp mariadb yaml file .png|center|thumb]]We need to deploy mariadb service acp_mariadb_service.yml while deploying acp_session pod we will provide the details of mariadb service to connect with mariadb from acp_session pod  &lt;br /&gt;
&lt;br /&gt;
Below is the yaml for mariadb_service  &lt;br /&gt;
&lt;br /&gt;
[[File:Acp mariadb service yaml file.png|center|thumb]]&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62415</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62415"/>
		<updated>2025-04-01T07:46:03Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;             Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed. &lt;br /&gt;
[[File:Image.png|left|thumb]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. We have used step 1  to create custom ACP docker image&lt;br /&gt;
[[File:ACP Session Image.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is screenshot where we are tagging the image as per the GCP repo , so that we can push the image to GCP&lt;br /&gt;
&lt;br /&gt;
[[File:Acp session tagged images.png|center|thumb]]As per below Screenshot we are tagging the image and pushing it to the GCP repo.&lt;br /&gt;
&lt;br /&gt;
[[File:Custom Image tagging and Pushing to GCP.png|center|thumb]]We can check list of images which are pushed to acp-repo in the GCP k8s by using the below command &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''gcloud artifacts docker images list us-west1-docker.pkg.dev/supple-lattice-206522/acp-repo'''&lt;br /&gt;
&lt;br /&gt;
From GCP , K8s we need to deploy the mariadb pod using the acp_mariadb.yaml.&lt;br /&gt;
&lt;br /&gt;
10GB Volume is created in GCP using the create_pvc.yml file which is sued for mariadb to store data&lt;br /&gt;
[[File:Create pvc.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below Steps are performed by using this below acp_maraidb.yaml file&lt;br /&gt;
&lt;br /&gt;
1.We are using separate namespace called acp-dev &lt;br /&gt;
&lt;br /&gt;
2.We are using the custom image which we pushed to GCP repo&lt;br /&gt;
&lt;br /&gt;
3. We are attaching a 10GB volume to store mariadb db data &lt;br /&gt;
[[File:Acp mariadb yaml file .png|center|thumb]]We need to deploy mariadb service  &lt;br /&gt;
&lt;br /&gt;
[[File:Acp mariadb service yaml file.png|center|thumb]]&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=File:Acp_mariadb_service_yaml_file.png&amp;diff=62414</id>
		<title>File:Acp mariadb service yaml file.png</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=File:Acp_mariadb_service_yaml_file.png&amp;diff=62414"/>
		<updated>2025-04-01T07:45:38Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;acp_mariadb_service yaml file&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62413</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62413"/>
		<updated>2025-04-01T07:38:07Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;            Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed. &lt;br /&gt;
[[File:Image.png|left|thumb]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. We have used step 1  to create custom ACP docker image&lt;br /&gt;
[[File:ACP Session Image.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is screenshot where we are tagging the image as per the GCP repo , so that we can push the image to GCP&lt;br /&gt;
&lt;br /&gt;
[[File:Acp session tagged images.png|center|thumb]]As per below Screenshot we are tagging the image and pushing it to the GCP repo.&lt;br /&gt;
&lt;br /&gt;
[[File:Custom Image tagging and Pushing to GCP.png|center|thumb]]We can check list of images which are pushed to acp-repo in the GCP k8s by using the below command &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''gcloud artifacts docker images list us-west1-docker.pkg.dev/supple-lattice-206522/acp-repo'''&lt;br /&gt;
&lt;br /&gt;
From GCP , K8s we need to deploy the mariadb pod using the acp_mariadb.yaml.&lt;br /&gt;
&lt;br /&gt;
10GB Volume is created in GCP using the create_pvc.yml file which is sued for mariadb to store data&lt;br /&gt;
[[File:Create pvc.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below Steps are performed by using this below acp_maraidb.yaml file&lt;br /&gt;
&lt;br /&gt;
1.We are using separate namespace called acp-dev &lt;br /&gt;
&lt;br /&gt;
2.We are using the custom image which we pushed to GCP repo&lt;br /&gt;
&lt;br /&gt;
3. We are attaching a 10GB volume to store mariadb db data &lt;br /&gt;
[[File:Acp mariadb yaml file .png|center|thumb]]&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=File:Create_pvc.png&amp;diff=62412</id>
		<title>File:Create pvc.png</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=File:Create_pvc.png&amp;diff=62412"/>
		<updated>2025-04-01T07:37:20Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;create_pvc&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62411</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62411"/>
		<updated>2025-04-01T07:36:41Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;           Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed. &lt;br /&gt;
[[File:Image.png|left|thumb]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. We have used step 1  to create custom ACP docker image&lt;br /&gt;
[[File:ACP Session Image.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is screenshot where we are tagging the image as per the GCP repo , so that we can push the image to GCP&lt;br /&gt;
&lt;br /&gt;
[[File:Acp session tagged images.png|center|thumb]]As per below Screenshot we are tagging the image and pushing it to the GCP repo.&lt;br /&gt;
&lt;br /&gt;
[[File:Custom Image tagging and Pushing to GCP.png|center|thumb]]We can check list of images which are pushed to acp-repo in the GCP k8s by using the below command &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''gcloud artifacts docker images list us-west1-docker.pkg.dev/supple-lattice-206522/acp-repo'''&lt;br /&gt;
&lt;br /&gt;
From GCP , K8s we need to deploy the mariadb pod using the acp_mariadb.yaml.&lt;br /&gt;
&lt;br /&gt;
10GB Volume is created in GCP using the create_pvc.yml file which is sued for mariadb to store data&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below Steps are performed by using this below acp_maraidb.yaml file&lt;br /&gt;
&lt;br /&gt;
1.We are using separate namespace called acp-dev &lt;br /&gt;
&lt;br /&gt;
2.We are using the custom image which we pushed to GCP repo&lt;br /&gt;
&lt;br /&gt;
3. We are attaching a 10GB volume to store mariadb db data &lt;br /&gt;
[[File:Acp mariadb yaml file .png|center|thumb]]&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62410</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62410"/>
		<updated>2025-04-01T07:30:05Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;           Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed. &lt;br /&gt;
[[File:Image.png|left|thumb]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. We have used step 1  to create custom ACP docker image&lt;br /&gt;
[[File:ACP Session Image.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is screenshot where we are tagging the image as per the GCP repo , so that we can push the image to GCP&lt;br /&gt;
&lt;br /&gt;
[[File:Acp session tagged images.png|center|thumb]]As per below Screenshot we are tagging the image and pushing it to the GCP repo.&lt;br /&gt;
&lt;br /&gt;
[[File:Custom Image tagging and Pushing to GCP.png|center|thumb]]We can check list of images which are pushed to acp-repo in the GCP k8s by using the below command &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''gcloud artifacts docker images list us-west1-docker.pkg.dev/supple-lattice-206522/acp-repo'''&lt;br /&gt;
&lt;br /&gt;
From GCP , K8s we need to deploy the mariadb pod using the acp_mariadb.yaml.&lt;br /&gt;
&lt;br /&gt;
Below Steps are performed by suing this below yaml file&lt;br /&gt;
&lt;br /&gt;
1.We are using separate namespace called acp-dev &lt;br /&gt;
&lt;br /&gt;
2.We are using the custom image which we pushed to GCP repo&lt;br /&gt;
&lt;br /&gt;
3. We are attaching a 10GB volume to store mariadb db data &lt;br /&gt;
[[File:Acp mariadb yaml file .png|center|thumb]]&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=File:Acp_mariadb_yaml_file_.png&amp;diff=62409</id>
		<title>File:Acp mariadb yaml file .png</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=File:Acp_mariadb_yaml_file_.png&amp;diff=62409"/>
		<updated>2025-04-01T07:26:52Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;acp_mariadb yaml file&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62408</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62408"/>
		<updated>2025-04-01T07:22:10Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;          Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed. &lt;br /&gt;
[[File:Image.png|left|thumb]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. We have used step 1  to create custom ACP docker image&lt;br /&gt;
[[File:ACP Session Image.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is screenshot where we are tagging the image as per the GCP repo , so that we can push the image to GCP&lt;br /&gt;
&lt;br /&gt;
[[File:Acp session tagged images.png|center|thumb]]As per below Screenshot we are tagging the image and pushing it to the GCP repo.&lt;br /&gt;
&lt;br /&gt;
[[File:Custom Image tagging and Pushing to GCP.png|center|thumb]]We can check list of images which are pushed to acp-repo in the GCP k8s by using the below command &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''gcloud artifacts docker images list us-west1-docker.pkg.dev/supple-lattice-206522/acp-repo'''&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62407</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62407"/>
		<updated>2025-04-01T07:19:49Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;         Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed. &lt;br /&gt;
[[File:Image.png|left|thumb]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. We have used step 1  to create custom ACP docker image&lt;br /&gt;
[[File:ACP Session Image.png|center|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is screenshot where we are tagging the image as per the GCP repo , so that we can push the image to GCP&lt;br /&gt;
&lt;br /&gt;
[[File:Acp session tagged images.png|center|thumb]]As per below Screenshot we are tagging the image and pushing it to the GCP repo.&lt;br /&gt;
&lt;br /&gt;
[[File:Custom Image tagging and Pushing to GCP.png|center|thumb]]&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=File:ACP_Session_Image.png&amp;diff=62406</id>
		<title>File:ACP Session Image.png</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=File:ACP_Session_Image.png&amp;diff=62406"/>
		<updated>2025-04-01T07:16:54Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ACP_Session_Image&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62405</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62405"/>
		<updated>2025-04-01T07:14:37Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;        Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed. &lt;br /&gt;
[[File:Image.png|left|thumb]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. We have used step 1  to create custom ACP docker image&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is screenshot where we are tagging the image as per the GCP repo , so that we can push the image to GCP&lt;br /&gt;
&lt;br /&gt;
[[File:Acp session tagged images.png|center|thumb]]As per below Screenshot we are tagging the image and pushing it to the GCP repo.&lt;br /&gt;
&lt;br /&gt;
[[File:Custom Image tagging and Pushing to GCP.png|center|thumb]]&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=File:Custom_Image_tagging_and_Pushing_to_GCP.png&amp;diff=62404</id>
		<title>File:Custom Image tagging and Pushing to GCP.png</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=File:Custom_Image_tagging_and_Pushing_to_GCP.png&amp;diff=62404"/>
		<updated>2025-04-01T07:13:26Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Image&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62403</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62403"/>
		<updated>2025-04-01T07:09:15Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;       Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed. &lt;br /&gt;
[[File:Image.png|left|thumb]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. We have used step 1  to create custom ACP docker image&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is screenshot where we are tagging the image as per the GCP repo , so that we can push the image to GCP&lt;br /&gt;
&lt;br /&gt;
[[File:Acp session tagged images.png|center|thumb]]&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=File:Acp_session_tagged_images.png&amp;diff=62402</id>
		<title>File:Acp session tagged images.png</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=File:Acp_session_tagged_images.png&amp;diff=62402"/>
		<updated>2025-04-01T07:08:54Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;acp session tagged images&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62401</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62401"/>
		<updated>2025-04-01T07:06:05Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;      Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed. &lt;br /&gt;
[[File:Image.png|left|thumb]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. We have used step 1  to create custom ACP docker image&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is screenshot where we are tagging the image as per the GCP repo , so that we can push the image to GCP&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62400</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62400"/>
		<updated>2025-04-01T07:00:31Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;      Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed. &lt;br /&gt;
[[File:Image.png|left|thumb]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. We have used step 1  to create custom ACP docker image&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=File:Image.png&amp;diff=62399</id>
		<title>File:Image.png</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=File:Image.png&amp;diff=62399"/>
		<updated>2025-04-01T07:00:06Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Image&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62398</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62398"/>
		<updated>2025-04-01T06:58:27Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;     Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed &lt;br /&gt;
&lt;br /&gt;
2. We have used step 1  to create custom ACP docker image&lt;br /&gt;
&lt;br /&gt;
[[File:Windows with SQL custom image.png|left|thumb]]&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62397</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62397"/>
		<updated>2025-04-01T06:57:00Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;    Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed &lt;br /&gt;
&lt;br /&gt;
2. We have used above image to create custom ACP docker image&lt;br /&gt;
&lt;br /&gt;
[[File:Windows with SQL custom image.png|left|thumb]]&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=File:Windows_with_SQL_custom_image.png&amp;diff=62396</id>
		<title>File:Windows with SQL custom image.png</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=File:Windows_with_SQL_custom_image.png&amp;diff=62396"/>
		<updated>2025-04-01T06:56:30Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Windows with SQL custom image&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62395</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62395"/>
		<updated>2025-04-01T06:55:41Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;   Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed &lt;br /&gt;
&lt;br /&gt;
2. We have used above image to create custom ACP docker image&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62394</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62394"/>
		<updated>2025-04-01T06:55:12Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;  Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ACP Session , we have created custom docker image with two steps&lt;br /&gt;
&lt;br /&gt;
1. Created windows docker image with sql installed &lt;br /&gt;
2. We have used above image to create custom ACP docker image&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62393</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62393"/>
		<updated>2025-04-01T06:43:32Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;  Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains below Details:  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62392</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62392"/>
		<updated>2025-04-01T06:43:06Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; Deploying ACP MariaDB and ACP Session to K8S&lt;br /&gt;
&lt;br /&gt;
We have created custom images from the local system for the MariaDB and ACP to deploy pods on the GCP K8s Engine&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MariadB docker file contains &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Docker file contains the Image used  and we are installing the mariadb-client on the image , once the image is created this is pushed to GCP image repository&lt;br /&gt;
&lt;br /&gt;
Mariadb-Client is installed to connect locally from HeidiSQL APP.&lt;br /&gt;
[[File:Mariadb Docker FIle.png|left|thumb]]&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=File:Mariadb_Docker_FIle.png&amp;diff=62391</id>
		<title>File:Mariadb Docker FIle.png</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=File:Mariadb_Docker_FIle.png&amp;diff=62391"/>
		<updated>2025-04-01T06:37:32Z</updated>

		<summary type="html">&lt;p&gt;Naresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is Mariadb docker file&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
	<entry>
		<id>https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62390</id>
		<title>User:Naresh</title>
		<link rel="alternate" type="text/html" href="https://docs.analytica.com/index.php?title=User:Naresh&amp;diff=62390"/>
		<updated>2025-04-01T06:29:37Z</updated>

		<summary type="html">&lt;p&gt;Naresh: Deploying ACP MariaDB and ACP Session steps to deploy in GCP K8S&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Deploying ACP MariaDB and ACP Session to K8S&lt;/div&gt;</summary>
		<author><name>Naresh</name></author>
	</entry>
</feed>