Get Appointment

  • contact@wellinor.com
  • +(123)-456-7890

Blog & Insights

WP_Query Object ( [query] => Array ( [post_type] => post [showposts] => 8 [orderby] => Array ( [date] => desc ) [autosort] => 0 [paged] => 6 ) [query_vars] => Array ( [post_type] => post [showposts] => 8 [orderby] => Array ( [date] => desc ) [autosort] => 0 [paged] => 6 [error] => [m] => [p] => 0 [post_parent] => [subpost] => [subpost_id] => [attachment] => [attachment_id] => 0 [name] => [pagename] => [page_id] => 0 [second] => [minute] => [hour] => [day] => 0 [monthnum] => 0 [year] => 0 [w] => 0 [category_name] => [tag] => [cat] => [tag_id] => [author] => [author_name] => [feed] => [tb] => [meta_key] => [meta_value] => [preview] => [s] => [sentence] => [title] => [fields] => [menu_order] => [embed] => [category__in] => Array ( ) [category__not_in] => Array ( ) [category__and] => Array ( ) [post__in] => Array ( ) [post__not_in] => Array ( ) [post_name__in] => Array ( ) [tag__in] => Array ( ) [tag__not_in] => Array ( ) [tag__and] => Array ( ) [tag_slug__in] => Array ( ) [tag_slug__and] => Array ( ) [post_parent__in] => Array ( ) [post_parent__not_in] => Array ( ) [author__in] => Array ( ) [author__not_in] => Array ( ) [search_columns] => Array ( ) [ignore_sticky_posts] => [suppress_filters] => [cache_results] => 1 [update_post_term_cache] => 1 [update_menu_item_cache] => [lazy_load_term_meta] => 1 [update_post_meta_cache] => 1 [posts_per_page] => 8 [nopaging] => [comments_per_page] => 50 [no_found_rows] => [order] => DESC ) [tax_query] => WP_Tax_Query Object ( [queries] => Array ( ) [relation] => AND [table_aliases:protected] => Array ( ) [queried_terms] => Array ( ) [primary_table] => wp_yjtqs8r8ff_posts [primary_id_column] => ID ) [meta_query] => WP_Meta_Query Object ( [queries] => Array ( ) [relation] => [meta_table] => [meta_id_column] => [primary_table] => [primary_id_column] => [table_aliases:protected] => Array ( ) [clauses:protected] => Array ( ) [has_or_relation:protected] => ) [date_query] => [request] => SELECT SQL_CALC_FOUND_ROWS wp_yjtqs8r8ff_posts.ID FROM wp_yjtqs8r8ff_posts WHERE 1=1 AND ((wp_yjtqs8r8ff_posts.post_type = 'post' AND (wp_yjtqs8r8ff_posts.post_status = 'publish' OR wp_yjtqs8r8ff_posts.post_status = 'expired' OR wp_yjtqs8r8ff_posts.post_status = 'acf-disabled' OR wp_yjtqs8r8ff_posts.post_status = 'tribe-ea-success' OR wp_yjtqs8r8ff_posts.post_status = 'tribe-ea-failed' OR wp_yjtqs8r8ff_posts.post_status = 'tribe-ea-schedule' OR wp_yjtqs8r8ff_posts.post_status = 'tribe-ea-pending' OR wp_yjtqs8r8ff_posts.post_status = 'tribe-ea-draft'))) ORDER BY wp_yjtqs8r8ff_posts.post_date DESC LIMIT 40, 8 [posts] => Array ( [0] => WP_Post Object ( [ID] => 3678 [post_author] => 2 [post_date] => 2022-09-23 16:06:00 [post_date_gmt] => 2022-09-23 16:06:00 [post_content] =>

https://youtu.be/j_R65f2888E
Keyva CEO Jaime Gmach shares his insights on how we help our clients modernize and transform their organizations.
[post_title] => Keyva: Unlock Tomorrow [post_excerpt] => [post_status] => publish [comment_status] => closed [ping_status] => closed [post_password] => [post_name] => keyva-unlock-tomorrow [to_ping] => [pinged] => [post_modified] => 2022-09-23 16:06:00 [post_modified_gmt] => 2022-09-23 16:06:00 [post_content_filtered] => [post_parent] => 0 [guid] => https://keyvatech.com/?p=3405 [menu_order] => 0 [post_type] => post [post_mime_type] => [comment_count] => 0 [filter] => raw ) [1] => WP_Post Object ( [ID] => 3379 [post_author] => 7 [post_date] => 2022-09-22 20:34:51 [post_date_gmt] => 2022-09-22 20:34:51 [post_content] =>

By: Saikrishna Madupu – Sr Devops Engineer

Ansible by Red Hat is the de-facto tool used by organizations for automated configuration management. It is commonly used for use cases around infrastructure deployment and post deployment actions, application deployments, and for infrastructure operations and lifecycle tasks.

In the following blog, we will cover some examples ansible callback plugins, which help us track events around playbook executions. You can use these plugins for notification of task failures, job statuses, etc.


Features:

  1. Stdout plugins
  2. Other Plugins (also includes notification plugins & aggregate plugins in general)

A complete list of available plugins can be viewed from terminal:

ansible-doc -t callback -l

Stdout_plugins:

[defaults]
stdout_callback = actionable
NameDescription
ActionableChanged/failed status
DefaultDefault o/p
debugReadable stderr & stdout
DenseOverwrite o/p rather than scrolling
JsonJson o/p
MinimalTask details with proper format
Selectiveo/p for tagged task
SkippyDoesn’t show o/p for skipped hosts
OnelineSimilar to Minimal but in one line

Examples of usage:

Actionable:

This plugin is deprecated.

Op:

Debug:

            By enabling debug plugin we don’t need to register output and use again debug module in our playbooks.

Default:

Displays standard error in human readable format

Dense:

            It overwrites o/p and only shows two lines as shown below.

JSON:

            Prints o/p in json format and we see the entire o/p.

Minimal:

            It is quite similar to default,

Selective:

            Selective plugin shows o/p for tasks that got executed successfully that are tagged with print_action

Skippy:

            It doesn’t show o/p for the tasks that got skipped, when a task is not executed for any sort of host it will not be displayed as skipped likewise default do in cases.

Oneline:

            It shows o/p  of command in one format as shown below.

Other plugins:

[defaults]
Callback_whitelist = slack, mail

Profile_tasks:

                        This shows the duration of time took to execute each task.

Mail:

            It can be configured to monitor the job in case of success / failure. Below is the example.
           

We will receive alerts in email once this playbook gets executed.

Some of the other_plugins are listed below

Name DescriptionLibraries required using pip
ForemanNotifies to Foreman 
HipchatNotifies to HipChatPrettytable
JabberNotifies to Jabbergit+https://github.com/ArchipelProject/xmpppy
JunitWrite JUnit-formatted to XML fileJunit_xml
Log_playsLog results per hosts 
LogentriesNotifies to LogentriesCertifi  flatdict
LogstashSend results to LogstashPython-logstash
MailNotifies through email when tasks fail 
Osx_saySpeak notifications on macOS 
Profile_tasksexecution time for each task 
SlackNotifies to SlackPrettytable
timerReport total execution time of playbook 

Ref: https://docs.ansible.com/ansible/latest/plugins/callback.htm

About the Author

[table id =5 /]

[post_title] => Ansible Callback Plugins [post_excerpt] => [post_status] => publish [comment_status] => closed [ping_status] => closed [post_password] => [post_name] => ansible-callback-plugins [to_ping] => [pinged] => [post_modified] => 2022-09-23 14:04:43 [post_modified_gmt] => 2022-09-23 14:04:43 [post_content_filtered] => [post_parent] => 0 [guid] => https://keyvatech.com/?p=3379 [menu_order] => 0 [post_type] => post [post_mime_type] => [comment_count] => 0 [filter] => raw ) [2] => WP_Post Object ( [ID] => 3371 [post_author] => 13 [post_date] => 2022-09-15 15:45:00 [post_date_gmt] => 2022-09-15 15:45:00 [post_content] =>

Jaime Gmach has been named the recipient of a 2022 Lifetime Achievement Award by Vistage, the world’s largest CEO coaching and peer advisory organization for small and midsize businesses. The Lifetime Achievement Award honors long-standing members who see no finish line in their pursuit of world class. With a track record of bold decisions benefiting company, community and beyond, these members are a beacon to Vistage peers even as they achieve personal greatness.

Jaime Gmach is the founder and Chief Executive Officer of Evolving Solutions, a leading technology solution provider focused on helping enterprise clients modernize and automate their mission-critical infrastructure to support digital transformation. He also serves as CEO of Keyva, which he founded in 2018.  Keyva is a services organization focused on cloud automation, orchestration, and DevOps, and was launched to help clients take advantage of innovation and disruptions driven by cloud technologies.

Both organizations thrive due to the commitment to their core values of Do the Right Thing, Be a Team Player, and Be Humbly Confident, highlighted by being named a Top Workplace in Minnesota in 2022. One of Jaime’s true passions in life is giving back to the communities of Minneapolis and St. Paul. He has led multiple Evolving Solutions and Keyva philanthropic initiatives that provide technology, financial, and labor support to charitable organizations throughout the region.

“I am honored and humbled to receive this prestigious award because of the transformational effect of my involvement with Vistage, said Gmach.  “It supported me in building strong companies with a foundation of strong values, employee-first cultures and the focus of delivering the best outcomes to our clients.”

“Jaime was selected from over 300 local Vistage members as one who embodies our Vistage values of Growth, Challenge, and Commitment,” said Brian Davis, Vistage Master Chair.  “Not only has he built two highly successful and thriving businesses, but he has also had a huge impact on his community and his fellow Vistage group members. In the last 10 years I have seen tremendous growth in him professionally, personally, and spiritually, and he serves as a model of what effective leadership looks like for all of us. I feel blessed to have him in our group!”

About Vistage Worldwide, Inc.
Vistage is the world’s largest CEO coaching and peer advisory organization for small and midsize businesses. For more than 60 years, we’ve been helping CEOs, business owners and key executives solve their greatest challenges through confidential peer groups and one-to-one executive coaching sessions. Today, more than 25,000 members in 25 countries rely on Vistage to help make better decisions for their companies, families, and communities. The results prove it: Vistage CEO members grew their annual revenue on average by 4.6% in 2020, while nonmembers with comparable small and midsize businesses saw revenue decrease by 4.7%, according to a study of Dun & Bradstreet data. Learn more at vistage.com.

About Evolving Solutions
Evolving Solutions helps clients modernize and automate their mission-critical applications and infrastructure to support business transformation. Our business is client-centric consulting and delivery of technical solutions to enable modern operations in a hybrid cloud world. Learn more at www.evolvingsol.com.

About Keyva
At Keyva, we exist today so our clients can thrive tomorrow. This means we do everything we can to provide services and expertise that go beyond IT. We work hard to simplify our clients’ technologies, to free up time so they can focus on their core business. Learn more at www.keyvatech.com.

[post_title] => Vistage recognizes Jaime Gmach with a 2022 Lifetime Achievement Award [post_excerpt] => [post_status] => publish [comment_status] => closed [ping_status] => closed [post_password] => [post_name] => vistage-recognizes-jaime-gmach-with-a-2022-lifetime-achievement-award [to_ping] => [pinged] => [post_modified] => 2024-03-13 19:50:43 [post_modified_gmt] => 2024-03-13 19:50:43 [post_content_filtered] => [post_parent] => 0 [guid] => https://keyvatech.com/?p=3371 [menu_order] => 0 [post_type] => post [post_mime_type] => [comment_count] => 0 [filter] => raw ) [3] => WP_Post Object ( [ID] => 3679 [post_author] => 2 [post_date] => 2022-09-05 16:16:15 [post_date_gmt] => 2022-09-05 16:16:15 [post_content] =>
https://youtu.be/HzsupW4J5r0
Keyva Founder and CEO Jaime Gmach shares an overview of the company and the value we deliver to our clients.
[post_title] => Who is Keyva? [post_excerpt] => [post_status] => publish [comment_status] => closed [ping_status] => closed [post_password] => [post_name] => who-is-keyva [to_ping] => [pinged] => [post_modified] => 2022-09-05 16:16:15 [post_modified_gmt] => 2022-09-05 16:16:15 [post_content_filtered] => [post_parent] => 0 [guid] => https://keyvatech.com/?p=3414 [menu_order] => 0 [post_type] => post [post_mime_type] => [comment_count] => 0 [filter] => raw ) [4] => WP_Post Object ( [ID] => 3357 [post_author] => 7 [post_date] => 2022-08-30 15:12:11 [post_date_gmt] => 2022-08-30 15:12:11 [post_content] =>

By: Delroy Hall – Devops Engineer

In this blog we will cover how to install Portworx to be used as a highly available storage solution on Amazon EKS.

What is Portworx:

Portworx is a software defined storage solution designed for container environments.  Portworx provides a wide range use case with various application with data protection, data security, data migration and more in mind.

https://www.portworx.com

Pre-requisites:


Installing Portworx via Operator:

1. Create an IAM policy using the following permissions and add the policy to your EKS nodegroup(s) role. These are the permissions needed for storage operations.

1.	{
2.	    "Version": "2012-10-17",
3.	    "Statement": [
4.	        {
5.	            "Sid": "", 
6.	            "Effect": "Allow",
7.	            "Action": [
8.	                "ec2:AttachVolume",
9.	                "ec2:ModifyVolume",
10.	                "ec2:DetachVolume",
11.	                "ec2:CreateTags",
12.	                "ec2:CreateVolume",
13.	                "ec2:DeleteTags",
14.	                "ec2:DeleteVolume",
15.	                "ec2:DescribeTags",
16.	                "ec2:DescribeVolumeAttribute",
17.	                "ec2:DescribeVolumesModifications",
18.	                "ec2:DescribeVolumeStatus",
19.	                "ec2:DescribeVolumes",
20.	                "ec2:DescribeInstances",
21.	                "autoscaling:DescribeAutoScalingGroups"
22.	            ],
23.	            "Resource": [
24.	                "*"
25.	            ]
26.	        }
27.	    ]
28.	}
29.	 

2. To install Portworx on a Kubernetes cluster, you will need to generate a Kubernetes manifest file. Navigate to https://central.portworx.com

3. To generate the manifest file, select Portworx Enterprise from product catalog

4. Under Product Line, select the option depending on your license/use case. For this guide select Portworx Enterprise, then click Continue.

5. Check the box Use the Portworx Operator, select the latest version of Portworx available, and select the Built-in option for ETCD, the click Next.

6. For your environment select Cloud, and AWS Cloud Platform

7. For Configuring storage devices select Create Using a Spec and the following for storage

8. Under Network keep the default options, then select Next.

9. Under Customize select Amazon Elastic Container Service for Kubernetes (EKS) and click Finish

10. After generating the spec file Portworx will provide you with the following commands to run against your AWS EKS cluster:

kubectl apply -f 'https://install.portworx.com/2.11?comp=pxoperator’

kubectl apply -f 'https://install.portworx.com/2.11?operator=true&mc=false&b=true&kd=type%3Dgp2%2Csize%3D150&mz=1&s=%22type%3Dgp2%2Csize%3D150%22&c=px-cluster&stork=true&csi=true&mon=true&tel=false&st=k8s&promop=true'

The cluster will provision EBS volumes based on our settings and attach them to the nodes.


To verify your install, you can run the following to get Portworx Cluster status:

PX_POD=$(kubectl get pods -l name=portworx -n kube-system -o jsonpath='{.items[0].metadata.name}')
kubectl exec $PX_POD -n kube-system -- /opt/pwx/bin/pxctl status

About the Author

[table id =6 /]

[post_title] => Deploying Portworx on Amazon EKS [post_excerpt] => [post_status] => publish [comment_status] => closed [ping_status] => closed [post_password] => [post_name] => deploying-portworx-on-amazon-eks [to_ping] => [pinged] => [post_modified] => 2022-08-30 15:12:35 [post_modified_gmt] => 2022-08-30 15:12:35 [post_content_filtered] => [post_parent] => 0 [guid] => https://keyvatech.com/?p=3357 [menu_order] => 0 [post_type] => post [post_mime_type] => [comment_count] => 0 [filter] => raw ) [5] => WP_Post Object ( [ID] => 3335 [post_author] => 7 [post_date] => 2022-08-23 18:54:15 [post_date_gmt] => 2022-08-23 18:54:15 [post_content] =>

By: Saikrishna Madupu – Sr Devops Engineer

In this blog, we will cover what is Goss, and how to leverage it for automated server validation testing.

What is Goss:

Goss is a YAML based serverspec alternative tool for validating a server’s configuration. It eases the process of writing tests by allowing the user to generate tests from the current system state. Once the test suite is written they can be executed, waited-on, or served as a health endpoint. You can do server validation quickly and easily with Goss and integrate with pipelines to monitor the status of any services.

I’ll be using airflow for a target test case. First, we will install airflow locally and validate the status of airflow service status using Goss.

https://github.com/aelsabbahy/goss

Goss Installation:

curl -L https://github.com/aelsabbahy/goss/releases/download/v0.3.7/goss-linux-amd64 -o /usr/local/bin/goss

curl -L https://raw.githubusercontent.com/aelsabbahy/goss/master/extras/dgoss/dgoss -o /usr/local/bin/dgoss

chmod +rx /usr/local/bin/dgoss

https://ports.macports.org/port/goss/

Install Macports and run

sudo port install goss

## Add the following line to your ~/.profile or .zshrc

export GOSS_PATH=/usr/local/bin/goss



Use Case:

We will deploy Apache Airflow locally and validate the status of webserver using Goss. Airflow is an open-source project used to programmatically author, schedule, and monitor workflows. You can find more about airflow here - https://airflow.apache.org/

export AIRFLOW_HOME=~/airflow

pip3 install apache-airflow

pip3 install typing_extensions

# initialize the database

airflow initdb

# start the web server, default port is 8080

airflow webserver -p 8080

# start the scheduler. I recommend opening up a separate terminal \
# window for this step

airflow scheduler

# open localhost:8080 in the browser and enable the example dag via the home page

Validation:

Goss.yaml file validates HTTP response status code and content

export GOSS_USE_ALPHA=1
goss validate goss.yaml

After starting the airflow webserver and making sure the application is up and running by validating it (via opening the page in a browser)

Ref: https://github.com/aelsabbahy/goss/blob/master/docs/manual.md#goss-test-creation

About the Author

[table id =5 /]

[post_title] => GOSS Server Validation [post_excerpt] => [post_status] => publish [comment_status] => closed [ping_status] => closed [post_password] => [post_name] => goss-server-validation [to_ping] => [pinged] => [post_modified] => 2022-08-23 22:00:44 [post_modified_gmt] => 2022-08-23 22:00:44 [post_content_filtered] => [post_parent] => 0 [guid] => https://keyvatech.com/?p=3335 [menu_order] => 0 [post_type] => post [post_mime_type] => [comment_count] => 0 [filter] => raw ) [6] => WP_Post Object ( [ID] => 3302 [post_author] => 7 [post_date] => 2022-08-05 16:35:20 [post_date_gmt] => 2022-08-05 16:35:20 [post_content] =>

Keyva is pleased to announce the certification of our ServiceNow App for Red Hat Ansible against the latest ServiceNow San Diego release. This release is the newest updated software version since the company's inception.

Customers can now seamlessly upgrade their ServiceNow App from previous ServiceNow releases (Quebec, Rome) to the San Diego release.

Learn more about the Keyva ServiceNow App for Ansible and view all the ServiceNow releases for which it has been certified at the ServiceNow store, visit https://bit.ly/ansible_servicenow.

[post_title] => ServiceNow App for Red Hat Ansible - Certified for San Diego Release [post_excerpt] => [post_status] => publish [comment_status] => closed [ping_status] => closed [post_password] => [post_name] => servicenow-app-for-red-hat-ansible-certified-for-san-diego-release-2 [to_ping] => [pinged] => [post_modified] => 2022-08-05 16:35:21 [post_modified_gmt] => 2022-08-05 16:35:21 [post_content_filtered] => [post_parent] => 0 [guid] => https://keyvatech.com/?p=3302 [menu_order] => 0 [post_type] => post [post_mime_type] => [comment_count] => 0 [filter] => raw ) [7] => WP_Post Object ( [ID] => 3282 [post_author] => 2 [post_date] => 2022-07-28 17:40:42 [post_date_gmt] => 2022-07-28 17:40:42 [post_content] =>

In this blog we will be discuss best practices to handle Kubernetes security by implementing Kyverno policies. We’ll be using a KIND cluster to demonstrate our use cases.

What is Kyverno:

Kyverno is a policy engine (controller) which applies policies to Kubernetes resources. It helps to verify if deployments are adhering to defined standards, and to implement best practices by defining certain conditions (policies). It includes many features, and some of the benefits (not an exhaustive list) are listed below:

  1. Define policies as Kubernetes resources (no new language to learn!)
  2. Validate, mutate, or generate any resource
  3. Verify container images for software supply chain security
  4. Inspect image metadata
  5. Match resources using label selectors and wildcards
  6. Validate and mutate using overlays (like Kustomize!)
  7. Synchronize configurations across Namespaces
  8. Block non-conformant resources using admission controls, or report policy violations
  9. Test policies and validate resources using the Kyverno CLI, in your CI/CD pipeline, before applying to your cluster
  10. Manage policies as code using familiar tools like git and kustomize

How it Works:

Kyverno runs as an admission controller within the Kubernetes cluster. When Kyverno policies are applied to the cluster and someone tries to deploy any of the resources in that cluster, Kyverno receives the request, validates via mutating admission webhook HTTPS callbacks from the kube-apiserver, and applies matching polices to return results that enforce admission policies or reject requests.

Here is the overall workflow -

Installation: Kyverno can be installed using either helm or yaml file.
Option1:

kubectl create -f https://raw.githubusercontent.com/kyverno/kyverno/main/definitions/release/install.yaml

Option2:

helm repo add kyverno https://kyverno.github.io/kyverno/
helm repo update
helm install kyverno-policies kyverno/kyverno-policies -n kyverno

Use Cases:

We will walkthrough the following examples:

  1. Disallow the creation of pods in default namespaces

We will define restrict-default.yaml as below

Next, we will apply this policy

Kubectl apply -f restrict-default.yaml

In the below screenshot you can see the steps on how to validate that the appropriate Kyverno policy was applied to the deployment.

Note:

We will define require-labels.yaml as follows

kubectl apply -f require-labels.yaml

Adding default labels as part of any resource that gets created:

To configure a mutate policy of our KIND Cluster’s ClusterPolicy, and add labels such as env: prod on pods and other resources creation, create default-label.yaml as per below:

Kubectl apply -f default-label.yaml

[post_title] => How to Apply Kyverno Policies for Your Kubernetes Cluster [post_excerpt] => [post_status] => publish [comment_status] => closed [ping_status] => closed [post_password] => [post_name] => how-to-apply-kyverno-policies-for-your-kubernetes-cluster [to_ping] => [pinged] => [post_modified] => 2023-06-28 17:55:59 [post_modified_gmt] => 2023-06-28 17:55:59 [post_content_filtered] => [post_parent] => 0 [guid] => https://keyvatech.com/?p=3282 [menu_order] => 0 [post_type] => post [post_mime_type] => [comment_count] => 0 [filter] => raw ) ) [post_count] => 8 [current_post] => -1 [before_loop] => 1 [in_the_loop] => [post] => WP_Post Object ( [ID] => 3678 [post_author] => 2 [post_date] => 2022-09-23 16:06:00 [post_date_gmt] => 2022-09-23 16:06:00 [post_content] =>

https://youtu.be/j_R65f2888E
Keyva CEO Jaime Gmach shares his insights on how we help our clients modernize and transform their organizations.
[post_title] => Keyva: Unlock Tomorrow [post_excerpt] => [post_status] => publish [comment_status] => closed [ping_status] => closed [post_password] => [post_name] => keyva-unlock-tomorrow [to_ping] => [pinged] => [post_modified] => 2022-09-23 16:06:00 [post_modified_gmt] => 2022-09-23 16:06:00 [post_content_filtered] => [post_parent] => 0 [guid] => https://keyvatech.com/?p=3405 [menu_order] => 0 [post_type] => post [post_mime_type] => [comment_count] => 0 [filter] => raw ) [comment_count] => 0 [current_comment] => -1 [found_posts] => 113 [max_num_pages] => 15 [max_num_comment_pages] => 0 [is_single] => [is_preview] => [is_page] => [is_archive] => [is_date] => [is_year] => [is_month] => [is_day] => [is_time] => [is_author] => [is_category] => [is_tag] => [is_tax] => [is_search] => [is_feed] => [is_comment_feed] => [is_trackback] => [is_home] => 1 [is_privacy_policy] => [is_404] => [is_embed] => [is_paged] => 1 [is_admin] => [is_attachment] => [is_singular] => [is_robots] => [is_favicon] => [is_posts_page] => [is_post_type_archive] => [query_vars_hash:WP_Query:private] => 7e21dba9ceac55c210d816cfd41d8848 [query_vars_changed:WP_Query:private] => [thumbnails_cached] => [allow_query_attachment_by_filename:protected] => [stopwords:WP_Query:private] => [compat_fields:WP_Query:private] => Array ( [0] => query_vars_hash [1] => query_vars_changed ) [compat_methods:WP_Query:private] => Array ( [0] => init_query_flags [1] => parse_tax_query ) [tribe_is_event] => [tribe_is_multi_posttype] => [tribe_is_event_category] => [tribe_is_event_venue] => [tribe_is_event_organizer] => [tribe_is_event_query] => [tribe_is_past] => )

Keyva: Unlock Tomorrow

Keyva CEO Jaime Gmach shares his insights on how we help our clients modernize and transform their organizations.
Read more

Ansible Callback Plugins

By: Saikrishna Madupu – Sr Devops Engineer Ansible by Red Hat is the de-facto tool used by organizations for automated configuration management. It is commonly used for use cases around infrastructure deployment ...
Read more

Vistage recognizes Jaime Gmach with a 2022 Lifetime Achievement Award

Jaime Gmach has been named the recipient of a 2022 Lifetime Achievement Award by Vistage, the world’s largest CEO coaching and peer advisory organization for small and midsize businesses. The ...
Read more

Who is Keyva?

Keyva Founder and CEO Jaime Gmach shares an overview of the company and the value we deliver to our clients.
Read more
code displayed on computer monitor

Deploying Portworx on Amazon EKS

By: Delroy Hall – Devops Engineer In this blog we will cover how to install Portworx to be used as a highly available storage solution on Amazon EKS. What is Portworx: Portworx ...
Read more

GOSS Server Validation

By: Saikrishna Madupu – Sr Devops Engineer In this blog, we will cover what is Goss, and how to leverage it for automated server validation testing.What is Goss: Goss is a YAML ...
Read more

ServiceNow App for Red Hat Ansible – Certified for San Diego Release

Keyva is pleased to announce the certification of our ServiceNow App for Red Hat Ansible against the latest ServiceNow San Diego release. This release is the newest updated software version ...
Read more

How to Apply Kyverno Policies for Your Kubernetes Cluster

In this blog we will be discuss best practices to handle Kubernetes security by implementing Kyverno policies. We’ll be using a KIND cluster to demonstrate our use cases.What is Kyverno: ...
Read more