Skip to content

Commit

Permalink
Add article page, article details page and CSS
Browse files Browse the repository at this point in the history
Signed-off-by: mohin7 <mohin@appscode.com>
  • Loading branch information
mohin7 committed Jul 20, 2023
1 parent 7c39d5b commit 9bac477
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 559 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ Description: Learn how to deploy Postgres using the Kubernetes PostgreSQL Operat
date: "2023-02-01"
---

## How to Deploy Postgres via Kubernetes PostgreSQL Operator
# How to Deploy Postgres via Kubernetes PostgreSQL Operator

![Alt text](./deploy-postgres.jpg "a title")

Kubernetes is an open-source container orchestration platform that revolutionizes the way applications are deployed, scaled, and managed in a distributed computing environment. It provides a highly scalable and fault-tolerant system for automating the lifecycle management of containerized applications. Leveraging concepts like pods, services, and controllers, Kubernetes abstracts the underlying infrastructure and offers a declarative approach to application deployment and scaling. It incorporates advanced scheduling techniques, load balancing, and service discovery mechanisms to ensure efficient resource utilization and optimal performance. With its robust API, extensible architecture, and integration with cloud-native technologies, Kubernetes has emerged as the industry-standard solution for container orchestration, empowering organizations to build and operate resilient and scalable applications in a highly efficient manner.

Expand Down
17 changes: 8 additions & 9 deletions layouts/articles/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
<!-- articles area for page start -->
<section class="articles-area">
<div class="container">
<div class="columns">
<div class="column">
<h3>All Articles</h3>
</div>
</div>
<div class="columns is-multiline">
{{ range $idx, $p := $pages.ByDate.Reverse }}
<div class="column is-4">
<a href="{{ $p.RelPermalink }}" class="single-article-card">
<!-- <div class="user-info">
<img src="/assets/images/authors/profile-photos-84x84/dipta-roy.jpg" alt="author" width="20" height="20" loading="lazy" decoding="async">
<p class="mr-12 author">Dipta Roy</p>
</div> -->

<h2 class="is-ellipsis-3" title="Monitor MongoDB with Grafana Dashboard in Azure Kubernetes Service (AKS)">{{ $p.Title }}</h2>
<p class="is-ellipsis-3">{{$p.Description }}</p>
<h2 class="is-ellipsis-2" title="Monitor MongoDB with Grafana Dashboard in Azure Kubernetes Service (AKS)">{{ $p.Title }}</h2>
<p class="is-ellipsis-2">{{$p.Description }}</p>
<div class="card-bottom is-flex is-justify-content-space-between">
<div class="date-meta">10-Jul-2023</div>
<div class="arrow-icon width-15">
Expand All @@ -33,5 +33,4 @@ <h2 class="is-ellipsis-3" title="Monitor MongoDB with Grafana Dashboard in Azure
</section>
<!-- articles area for page end -->


{{ end }}
{{ end }}
2 changes: 1 addition & 1 deletion layouts/articles/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- is-centered -->
<div class="columns">
<div class="column is-12">
<div class="article-content">{{ .Content }}</div>
<div class="full-info">{{ .Content }}</div>
</div>
</div>
</div>
Expand Down
Loading

0 comments on commit 9bac477

Please sign in to comment.