Skip to content

Commit

Permalink
Merge branch 'main' into bglynn/aws-visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
bglynn committed Feb 25, 2024
2 parents eeaedc0 + 62487b7 commit 1c87823
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions docs/_common/install-otterize-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ brew install otterize/otterize/otterize-cli
<TabItem value="Apple Silicon" label="Apple Silicon">

```bash
curl -LJO https://get.otterize.com/otterize-cli/v1.0.4/otterize_macOS_arm64_notarized.zip
curl -LJO https://get.otterize.com/otterize-cli/v1.0.5/otterize_macOS_arm64_notarized.zip
tar xf otterize_macOS_arm64_notarized.zip
sudo cp otterize /usr/local/bin # optionally move to PATH
```
</TabItem>
<TabItem value="Intel 64-bit" label="Intel 64-bit">

```bash
curl -LJO https://get.otterize.com/otterize-cli/v1.0.4/otterize_macOS_x86_64_notarized.zip
curl -LJO https://get.otterize.com/otterize-cli/v1.0.5/otterize_macOS_x86_64_notarized.zip
tar xf otterize_macOS_x86_64_notarized.zip
sudo cp otterize /usr/local/bin # optionally move to PATH
```
Expand All @@ -42,7 +42,7 @@ scoop install otterize-cli
<TabItem value="64-bit" label="64-bit">

```PowerShell
Invoke-WebRequest -Uri https://get.otterize.com/otterize-cli/v1.0.4/otterize_windows_x86_64.zip -OutFile otterize_Windows_x86_64.zip
Invoke-WebRequest -Uri https://get.otterize.com/otterize-cli/v1.0.5/otterize_windows_x86_64.zip -OutFile otterize_Windows_x86_64.zip
Expand-Archive otterize_Windows_x86_64.zip -DestinationPath .
# optionally move to PATH
```
Expand All @@ -54,7 +54,7 @@ Expand-Archive otterize_Windows_x86_64.zip -DestinationPath .
<TabItem value="64-bit" label="64-bit">

```bash
wget https://get.otterize.com/otterize-cli/v1.0.4/otterize_linux_x86_64.tar.gz
wget https://get.otterize.com/otterize-cli/v1.0.5/otterize_linux_x86_64.tar.gz
tar xf otterize_linux_x86_64.tar.gz
sudo cp otterize /usr/local/bin # optionally move to PATH
```
Expand Down
2 changes: 1 addition & 1 deletion docs/features/aws-iam/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const tutorials = [
{
title: 'Automate AWS IAM for EKS',
description: 'Create just-in-time AWS IAM roles and policies that are kept in sync with your workloads',
url: 'aws-iam/tutorials/aws-iam-eks'
url: '/features/aws-iam/tutorials/aws-iam-eks'
},
];

Expand Down
4 changes: 2 additions & 2 deletions docs/features/istio/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ export const istio_tutorials = [
{
title: 'Istio AuthorizationPolicy automation',
description: 'Generate AuthorizationPolicy docs from existing connections',
url: 'istio/tutorials/k8s-istio-authorization-policies'
url: '/features/istio/tutorials/k8s-istio-authorization-policies'
},
{
title: 'Istio HTTP-level access mapping',
description: 'Map access between services including HTTP paths and methods',
url: 'istio/tutorials/k8s-istio-watcher'
url: '/features/istio/tutorials/k8s-istio-watcher'
}
];

Expand Down
8 changes: 4 additions & 4 deletions docs/features/network-mapping-network-policies/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ Otterize's [Network Mapper](/reference/configuration/network-mapper) is a zero-c
By connecting your cluster to Otterize Cloud, you'll immediately be presented with an interactive, historic and filterable map of your cluster.
You can access the same information in different formats by using the open-source Otterize CLI, with the commands `otterize mapper export`, `otterize mapper list` and `otterize mapper visualize`.

**visualize example:**:
**otterize mapper visualize example:**
![visualize example](/img/examples/example-visualize.png)

**list example:**
**otterize mapper list example:**
```
client in namespace otterize-tutorial-npol calls:
- server in namespace otterize-tutorial-npol
client-other in namespace otterize-tutorial-npol calls:
- server in namespace otterize-tutorial-npol
```
**export example:**
**otterize mapper export example:**
```yaml
apiVersion: k8s.otterize.com/v1alpha3
kind: ClientIntents
Expand Down Expand Up @@ -99,4 +99,4 @@ spec:
name: client
calls:
- name: nginx
```
```
4 changes: 2 additions & 2 deletions docs/features/postgresql/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ export const postgres_tutorials = [
{
title: 'Just-in-time PostgreSQL Access',
description: 'Learn how to manage just-in-time users and SQL GRANTs',
url: 'postgresql/tutorials/postgres'
url: '/features/postgresql/tutorials/postgres'
},
{
title: 'Map PostgreSQL access',
description: 'Learn how to use PostgreSQL audit logs to map access to your database',
url: 'postgresql/tutorials/postgres-mapping'
url: '/features/postgresql/tutorials/postgres-mapping'
}
];

Expand Down

0 comments on commit 1c87823

Please sign in to comment.