Skip to content

Commit

Permalink
Update review changes and add x(twitter icon)
Browse files Browse the repository at this point in the history
Signed-off-by: mohin7 <[email protected]>
  • Loading branch information
mohin7 committed Oct 10, 2023
1 parent b6dfe49 commit 04f5773
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ date: "2023-10-10"

![Kubernetes Redis Operator](./hero.jpg "Redis Operator")

In today's world of containerized applications and orchestration, the successful deployment and maintenance of databases, such as Redis, require a flexible and efficient approach. *Kubernetes Redis Operator* —a tool that streamlines the intricate tasks of configuring, managing, and scaling Redis databases within the Kubernetes environment.
In today's world of containerized applications and orchestration, the successful deployment and maintenance of databases, such as Redis, require a flexible and efficient approach. **Kubernetes Redis Operator** —a tool that streamlines the intricate tasks of configuring, managing, and scaling Redis databases within the Kubernetes environment.

Within this article, we will dive deep into the realm of Redis database setup, leveraging the power of the Kubernetes Redis Operator. We'll explore its array of benefits, distinctive features, and provide you with a comprehensive, go to guide. With this solution, you'll empower yourself with enhanced flexibility and automation for provisioning and administering your Redis databases, all while embracing the containerized infrastructure's best practices.

Expand Down Expand Up @@ -188,7 +188,7 @@ OK
"Stash"
10.244.0.14:6379> exit
```
We’ve successfully Deploy Redis to Kubernetes via *Kubernetes Redis operator* KubeDB and insert some sample data into it.
We’ve successfully Deploy Redis to Kubernetes via **Kubernetes Redis operator** KubeDB and insert some sample data into it.

## Redis on Kubernetes: Best Practices
When deploying Redis on Kubernetes, following best practices is essential to ensure the stability and reliability of your application. Here are some key best practices for optimizing your Redis deployment within a Kubernetes environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ mongodb-rs ClusterIP 10.8.1.145 <none> 27017/TCP 6m39s
mongodb-rs-pods ClusterIP None <none> 27017/TCP 6m39s
```

Now we'll use'mongodb-rs-auth' to export credentials. To make future commands more reusable, export 'USER' and 'PASSWORD' as environment variables.
Now we'll use `mongodb-rs-auth` to export credentials. To make future commands more reusable, export `USER` and `PASSWORD` as environment variables.
```bash
$ export USER=$(kubectl get secrets -n mongons mongodb-rs-auth -o jsonpath='{.data.\username}' | base64 -d)
Expand Down
8 changes: 4 additions & 4 deletions layouts/_default/baseof.html
Original file line number Diff line number Diff line change
Expand Up @@ -778,13 +778,13 @@ <h6>{{ .Name }}</h6>
<!-- Community link start -->
<div class="community-items ml-70">
{{ if $p.socialLinks.github }}
<a href="{{$p.socialLinks.github}}" class="community-item" target="_blank">
<a href="{{$p.socialLinks.github}}" class="community-item" target="_blank" title="Github">
<img src="/assets/images/icon/community/github-icon.svg" alt="github-icon">
</a>
{{ end }}
{{ if $p.socialLinks.twitter }}
<a href="{{$p.socialLinks.twitter}}" class="community-item" target="_blank">
<img src="/assets/images/icon/community/twitter-icon.svg" alt="twitter-icon">
<a href="{{$p.socialLinks.twitter}}" class="community-item" target="_blank" title="X(Twitter)">
<img src="/assets/images/icon/community/twitterx-icon.svg" alt="twitterx-icon">
</a>
{{ end }}
</div>
Expand Down Expand Up @@ -1098,7 +1098,7 @@ <h4>Legal</h4>
<div class="socail-link-inline">
<ul>
<li>
<a href="{{.Site.Params.twitter_url}}"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="{{.Site.Params.twitter_url}}"><img src="/assets/images/icon/community/twitterx-solid-icon.svg" alt="twitterx-icon"></a>
</li>
<li>
<a href="https://www.linkedin.com/company/appscode"><i class="fa fa-linkedin"
Expand Down
2 changes: 1 addition & 1 deletion layouts/datasheet/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ <h5 class="mb-16">CONTACT US</h5>
<a href="https://twitter.com/AppsCodeHQ" target="_blank"
class="is-inline-flex gap-8 is-align-items-center is-justify-content-center">
<span class="icon">
<i class="fa fa-twitter" aria-hidden="true"></i>
<img src="/assets/images/icon/community/twitterx-solid-icon.svg" alt="twitterx-icon">
</span>
<span>@AppsCodeHQ</span>
</a>
Expand Down
2 changes: 1 addition & 1 deletion layouts/datasheet/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ <h5 class="mb-16">CONTACT US</h5>
<a href="https://twitter.com/AppsCodeHQ" target="_blank"
class="is-inline-flex gap-8 is-align-items-center is-justify-content-center">
<span class="icon">
<i class="fa fa-twitter" aria-hidden="true"></i>
<img src="/assets/images/icon/community/twitterx-solid-icon.svg" alt="twitterx-icon">
</span>
<span>@AppsCodeHQ</span>
</a>
Expand Down
10 changes: 10 additions & 0 deletions static/assets/images/icon/community/twitterx-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions static/assets/images/icon/community/twitterx-solid-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions static/assets/sass/components/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,18 @@ p.spam-message {
border: 1px solid #8a8a8a;
border-radius: 50%;
transition: 0.3s ease-in-out;
display: flex;
align-items: center;
justify-content: center;
padding: 8px;

&:hover {
background: $ac-primary;
color: $ac-white;
border: 1px solid transparent;
img{
filter: brightness(10);
}
}
}

Expand Down

0 comments on commit 04f5773

Please sign in to comment.