Skip to content

Commit

Permalink
more git issue fixes
Browse files Browse the repository at this point in the history
safari image issue
caps matter in vercel?
  • Loading branch information
bglynn committed Jan 31, 2024
1 parent e7ccbc8 commit 856b036
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/reference/configuration/intents-operator/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ it is attempting to read, so the end result is that the topic ACLs determine act
### PostgreSQL users & access
The intents operator automatically creates, and updates credentials in PostgreSQL databases according to the declared intents. It works together with the Otterize credentials operator to easily enable secure access to PostgreSQL from client pods, all in your Kubernetes cluster.

Try the [Just-in-time PostgreSQL users & access](/features/postgresql/tutorials/postgresql) tutorial to learn more.
Try the [Just-in-time PostgreSQL users & access](/features/postgresql/tutorials/postgres) tutorial to learn more.

### Istio AuthorizationPolicy
The intents operator automatically creates, updates and deletes Istio authorization policies, automatically looks up service accounts for client pods and labels server pods, to reflect precisely the client-to-server calls declared in client intents files.
Expand Down
12 changes: 3 additions & 9 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,16 +159,10 @@ const config = {
{
from: ['/otterize-cloud'],
to: '/overview/otterize-cloud'
from: '/quick-tutorials',
to: '/',
},
{
from: '/quick-tutorials/k8s-mtls',
to: '/quickstart/access-control/k8s-kafka-mtls-cert-manager',
},
{
from: '/getting-started/oss-installation',
to: '/installation',
from: '/quick-tutorials',
to: '/',
},
{
from: ['/otterize-oss/usage-telemetry'],
Expand All @@ -195,7 +189,7 @@ const config = {
to: '/features/networking/tutorials/aws-eks-cni-mini',
},
{
from: ['/quick-tutorials/k8s-kafka-mtls-cert-manager', '/quickstart/access-control/k8s-kafka-mtls-cert-manager'],
from: ['/quick-tutorials/k8s-kafka-mtls-cert-manager', '/quickstart/access-control/k8s-kafka-mtls-cert-manager', '/quick-tutorials/k8s-mtls'],
to: '/features/kafka/tutorials/k8s-kafka-mtls-cert-manager',
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/components/LinkCard/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function DocsLinkCard({items, colSize}) {
>
{item.icon &&
<div className="tw-flex-shrink-0">
<img width="100%" className="tw-max-h-10 tw-max-w-10" src={item.icon} alt=""/>
<img width="40px" className="tw-max-h-10 tw-max-w-10" src={item.icon} alt=""/>
</div>
}
<div className="tw-min-w-0 tw-flex-1">
Expand Down

0 comments on commit 856b036

Please sign in to comment.