Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update provider versions in examples #832

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions content/master/cli/command-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ The `<package-kind>` is either a `configuration`, `function` or `provider`.
For example, to install version 0.42.0 of the
[AWS S3 provider](https://marketplace.upbound.io/providers/upbound/provider-aws-s3/v0.42.0):

`crossplane xpkg install provider xpkg.upbound.io/upbound/provider-aws-s3:v0.42.0`
`crossplane xpkg install provider xpkg.upbound.io/upbound/provider-aws-s3:v1.17.0`

#### Flags
{{< table "table table-sm table-striped">}}
Expand Down Expand Up @@ -510,7 +510,7 @@ registry on [Upbound Marketplace](https://marketplace.upbound.io/).
For example, to update to version 0.42.0 of the
[AWS S3 provider](https://marketplace.upbound.io/providers/upbound/provider-aws-s3/v0.42.0):

`crossplane xpkg update provider xpkg.upbound.io/upbound/provider-aws-s3:v0.42.0`
`crossplane xpkg update provider xpkg.upbound.io/upbound/provider-aws-s3:v1.17.0`


## beta
Expand Down Expand Up @@ -957,7 +957,7 @@ kind: Provider
metadata:
name: provider-aws-iam
spec:
package: xpkg.upbound.io/upbound/provider-aws-iam:v1.0.0
package: xpkg.upbound.io/upbound/provider-aws-iam:v1.17.0
```

Now include the XR or managed resource to validate.
Expand Down
10 changes: 5 additions & 5 deletions content/master/concepts/providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ For example, this installation of the Upbound AWS reference platform is
```shell {copy-lines="1"}
kubectl get providers
NAME INSTALLED HEALTHY PACKAGE AGE
provider-aws-s3 True False xpkg.upbound.io/upbound/provider-aws-s3:v0.41.0 12s
provider-aws-s3 True False xpkg.upbound.io/upbound/provider-aws-s3:v1.17.0 12s
```

To see more information on why the Provider isn't `HEALTHY` use
Expand All @@ -338,7 +338,7 @@ API Version: pkg.crossplane.io/v1
Kind: ProviderRevision
Spec:
Desired State: Active
Image: xpkg.upbound.io/upbound/provider-aws-s3:v0.41.0
Image: xpkg.upbound.io/upbound/provider-aws-s3:v1.17.0
Revision: 1
Status:
Conditions:
Expand Down Expand Up @@ -376,10 +376,10 @@ View the `ProviderRevisions` with
```shell {label="getPR",copy-lines="1"}
kubectl get providerrevisions
NAME HEALTHY REVISION IMAGE STATE DEP-FOUND DEP-INSTALLED AGE
provider-aws-s3-dbc7f981d81f True 1 xpkg.upbound.io/upbound/provider-aws-s3:v0.37.0 Active 1 1 10d
provider-aws-s3-dbc7f981d81f True 1 xpkg.upbound.io/upbound/provider-aws-s3:v1.17.0 Active 1 1 10d
provider-nop-552a394a8acc True 2 xpkg.upbound.io/crossplane-contrib/provider-nop:v0.3.0 Active 11d
provider-nop-7e62d2a1a709 True 1 xpkg.upbound.io/crossplane-contrib/provider-nop:v0.2.0 Inactive 13d
upbound-provider-family-aws-710d8cfe9f53 True 1 xpkg.upbound.io/upbound/provider-family-aws:v0.40.0 Active 10d
upbound-provider-family-aws-710d8cfe9f53 True 1 xpkg.upbound.io/upbound/provider-family-aws:v1.17.0 Active 10d
```

By default Crossplane keeps a single
Expand Down Expand Up @@ -640,7 +640,7 @@ kind: Provider
metadata:
name: provider-gcp-iam
spec:
package: xpkg.upbound.io/upbound/provider-gcp-iam:v0.37.0
package: xpkg.upbound.io/upbound/provider-gcp-iam:v1.9.0
runtimeConfigRef:
name: enable-ess
---
Expand Down
10 changes: 5 additions & 5 deletions content/master/getting-started/provider-aws-part-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ kind: Provider
metadata:
name: provider-aws-s3
spec:
package: xpkg.upbound.io/upbound/provider-aws-s3:v1.1.0
package: xpkg.upbound.io/upbound/provider-aws-s3:v1.17.0
EOF
```

Expand Down Expand Up @@ -96,7 +96,7 @@ kind: Provider
metadata:
name: provider-aws-dynamodb
spec:
package: xpkg.upbound.io/upbound/provider-aws-dynamodb:v1.1.0
package: xpkg.upbound.io/upbound/provider-aws-dynamodb:v1.17.0
EOF
```

Expand All @@ -106,9 +106,9 @@ View the new DynamoDB provider with `kubectl get providers`.
```shell {copy-lines="1"}
kubectl get providers
NAME INSTALLED HEALTHY PACKAGE AGE
provider-aws-dynamodb True True xpkg.upbound.io/upbound/provider-aws-dynamodb:v1.1.0 3m55s
provider-aws-s3 True True xpkg.upbound.io/upbound/provider-aws-s3:v1.1.0 13m
upbound-provider-family-aws True True xpkg.upbound.io/upbound/provider-family-aws:v1.1.0 13m
provider-aws-dynamodb True True xpkg.upbound.io/upbound/provider-aws-dynamodb:v1.17.0 3m55s
provider-aws-s3 True True xpkg.upbound.io/upbound/provider-aws-s3:v1.17.0 13m
upbound-provider-family-aws True True xpkg.upbound.io/upbound/provider-family-aws:v1.17.0 13m
```

## Create a custom API
Expand Down
2 changes: 1 addition & 1 deletion content/master/getting-started/provider-aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ kind: Provider
metadata:
name: provider-aws-s3
spec:
package: xpkg.upbound.io/upbound/provider-aws-s3:v1.1.0
package: xpkg.upbound.io/upbound/provider-aws-s3:v1.17.0
EOF
```

Expand Down
10 changes: 5 additions & 5 deletions content/master/getting-started/provider-azure-part-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ kind: Provider
metadata:
name: provider-azure-network
spec:
package: xpkg.upbound.io/upbound/provider-azure-network:v0.42.1
package: xpkg.upbound.io/upbound/provider-azure-network:v1.8.0
EOF
```

Expand Down Expand Up @@ -496,7 +496,7 @@ kind: Provider
metadata:
name: provider-azure-compute
spec:
package: xpkg.upbound.io/upbound/provider-azure-compute:v0.42.1
package: xpkg.upbound.io/upbound/provider-azure-compute:v1.8.0
EOF
```

Expand All @@ -506,9 +506,9 @@ View the new Compute provider with `kubectl get providers`.
```shell {copy-lines="1"}
kubectl get providers
NAME INSTALLED HEALTHY PACKAGE AGE
provider-azure-compute True True xpkg.upbound.io/upbound/provider-azure-compute:v0.42.1 25s
provider-azure-network True True xpkg.upbound.io/upbound/provider-azure-network:v0.42.1 3h
upbound-provider-family-azure True True xpkg.upbound.io/upbound/provider-family-azure:v0.42.1 3h
provider-azure-compute True True xpkg.upbound.io/upbound/provider-azure-compute:v1.8.0 25s
provider-azure-network True True xpkg.upbound.io/upbound/provider-azure-network:v1.8.0 3h
upbound-provider-family-azure True True xpkg.upbound.io/upbound/provider-family-azure:v1.8.0 3h
```

## Access the custom API
Expand Down
6 changes: 3 additions & 3 deletions content/master/getting-started/provider-azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ kind: Provider
metadata:
name: provider-azure-network
spec:
package: xpkg.upbound.io/upbound/provider-azure-network:v0.42.1
package: xpkg.upbound.io/upbound/provider-azure-network:v1.8.0
EOF
```

Expand All @@ -54,8 +54,8 @@ Verify the provider installed with `kubectl get providers`.
```shell {copy-lines="1",label="getProvider"}
kubectl get providers
NAME INSTALLED HEALTHY PACKAGE AGE
provider-azure-network True True xpkg.upbound.io/upbound/provider-azure-network:v0.42.1 38s
upbound-provider-family-azure True True xpkg.upbound.io/upbound/provider-family-azure:v0.42.1 26s
provider-azure-network True True xpkg.upbound.io/upbound/provider-azure-network:v1.8.0 38s
upbound-provider-family-azure True True xpkg.upbound.io/upbound/provider-family-azure:v1.8.0 26s
```

The Network Provider installs a second Provider, the
Expand Down
10 changes: 5 additions & 5 deletions content/master/getting-started/provider-gcp-part-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ kind: Provider
metadata:
name: provider-gcp-storage
spec:
package: xpkg.upbound.io/upbound/provider-gcp-storage:v0.41.0
package: xpkg.upbound.io/upbound/provider-gcp-storage:v1.9.0
EOF
```

Expand Down Expand Up @@ -114,7 +114,7 @@ kind: Provider
metadata:
name: provider-gcp-pubsub
spec:
package: xpkg.upbound.io/upbound/provider-gcp-pubsub:v0.41.0
package: xpkg.upbound.io/upbound/provider-gcp-pubsub:v1.9.0
EOF
```

Expand All @@ -123,9 +123,9 @@ View the new PubSub provider with `kubectl get providers`.
```shell {copy-lines="1"}
kubectl get providers
NAME INSTALLED HEALTHY PACKAGE AGE
provider-gcp-pubsub True True xpkg.upbound.io/upbound/provider-gcp-pubsub:v0.41.0 39s
provider-gcp-storage True True xpkg.upbound.io/upbound/provider-gcp-storage:v0.41.0 13m
upbound-provider-family-gcp True True xpkg.upbound.io/upbound/provider-family-gcp:v0.41.0 12m
provider-gcp-pubsub True True xpkg.upbound.io/upbound/provider-gcp-pubsub:v1.9.0 39s
provider-gcp-storage True True xpkg.upbound.io/upbound/provider-gcp-storage:v1.9.0 13m
upbound-provider-family-gcp True True xpkg.upbound.io/upbound/provider-family-gcp:v1.9.0 12m
```


Expand Down
6 changes: 3 additions & 3 deletions content/master/getting-started/provider-gcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ kind: Provider
metadata:
name: provider-gcp-storage
spec:
package: xpkg.upbound.io/upbound/provider-gcp-storage:v0.41.0
package: xpkg.upbound.io/upbound/provider-gcp-storage:v1.9.0
EOF
```

Expand All @@ -51,8 +51,8 @@ Verify the provider installed with `kubectl get providers`.
```shell {copy-lines="1",label="getProvider"}
kubectl get providers
NAME INSTALLED HEALTHY PACKAGE AGE
provider-gcp-storage True True xpkg.upbound.io/upbound/provider-gcp-storage:v0.41.0 36s
upbound-provider-family-gcp True True xpkg.upbound.io/upbound/provider-family-gcp:v0.41.0 29s
provider-gcp-storage True True xpkg.upbound.io/upbound/provider-gcp-storage:v1.9.0 36s
upbound-provider-family-gcp True True xpkg.upbound.io/upbound/provider-family-gcp:v1.9.0 29s
```

The Storage Provider installs a second Provider, the
Expand Down
6 changes: 3 additions & 3 deletions content/v1.16/cli/command-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ The `<package-kind>` is either a `configuration`, `function` or `provider`.
For example, to install version 0.42.0 of the
[AWS S3 provider](https://marketplace.upbound.io/providers/upbound/provider-aws-s3/v0.42.0):

`crossplane xpkg install provider xpkg.upbound.io/upbound/provider-aws-s3:v0.42.0`
`crossplane xpkg install provider xpkg.upbound.io/upbound/provider-aws-s3:v1.17.0`

#### Flags
{{< table "table table-sm table-striped">}}
Expand Down Expand Up @@ -320,7 +320,7 @@ registry on [Upbound Marketplace](https://marketplace.upbound.io/).
For example, to update to version 0.42.0 of the
[AWS S3 provider](https://marketplace.upbound.io/providers/upbound/provider-aws-s3/v0.42.0):

`crossplane xpkg update provider xpkg.upbound.io/upbound/provider-aws-s3:v0.42.0`
`crossplane xpkg update provider xpkg.upbound.io/upbound/provider-aws-s3:v1.17.0`


## beta
Expand Down Expand Up @@ -898,7 +898,7 @@ kind: Provider
metadata:
name: provider-aws-iam
spec:
package: xpkg.upbound.io/upbound/provider-aws-iam:v1.0.0
package: xpkg.upbound.io/upbound/provider-aws-iam:v1.17.0
```

Now include the XR or managed resource to validate.
Expand Down
10 changes: 5 additions & 5 deletions content/v1.16/concepts/providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ For example, this installation of the Upbound AWS reference platform is
```shell {copy-lines="1"}
kubectl get providers
NAME INSTALLED HEALTHY PACKAGE AGE
provider-aws-s3 True False xpkg.upbound.io/upbound/provider-aws-s3:v0.41.0 12s
provider-aws-s3 True False xpkg.upbound.io/upbound/provider-aws-s3:v1.17.0 12s
```

To see more information on why the Provider isn't `HEALTHY` use
Expand All @@ -338,7 +338,7 @@ API Version: pkg.crossplane.io/v1
Kind: ProviderRevision
Spec:
Desired State: Active
Image: xpkg.upbound.io/upbound/provider-aws-s3:v0.41.0
Image: xpkg.upbound.io/upbound/provider-aws-s3:v1.17.0
Revision: 1
Status:
Conditions:
Expand Down Expand Up @@ -376,10 +376,10 @@ View the `ProviderRevisions` with
```shell {label="getPR",copy-lines="1"}
kubectl get providerrevisions
NAME HEALTHY REVISION IMAGE STATE DEP-FOUND DEP-INSTALLED AGE
provider-aws-s3-dbc7f981d81f True 1 xpkg.upbound.io/upbound/provider-aws-s3:v0.37.0 Active 1 1 10d
provider-aws-s3-dbc7f981d81f True 1 xpkg.upbound.io/upbound/provider-aws-s3:v1.17.0 Active 1 1 10d
provider-nop-552a394a8acc True 2 xpkg.upbound.io/crossplane-contrib/provider-nop:v0.3.0 Active 11d
provider-nop-7e62d2a1a709 True 1 xpkg.upbound.io/crossplane-contrib/provider-nop:v0.2.0 Inactive 13d
upbound-provider-family-aws-710d8cfe9f53 True 1 xpkg.upbound.io/upbound/provider-family-aws:v0.40.0 Active 10d
upbound-provider-family-aws-710d8cfe9f53 True 1 xpkg.upbound.io/upbound/provider-family-aws:v1.17.0 Active 10d
```

By default Crossplane keeps a single
Expand Down Expand Up @@ -640,7 +640,7 @@ kind: Provider
metadata:
name: provider-gcp-iam
spec:
package: xpkg.upbound.io/upbound/provider-gcp-iam:v0.37.0
package: xpkg.upbound.io/upbound/provider-gcp-iam:v1.9.0
runtimeConfigRef:
name: enable-ess
---
Expand Down
10 changes: 5 additions & 5 deletions content/v1.16/getting-started/provider-aws-part-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ kind: Provider
metadata:
name: provider-aws-s3
spec:
package: xpkg.upbound.io/upbound/provider-aws-s3:v1.1.0
package: xpkg.upbound.io/upbound/provider-aws-s3:v1.17.0
EOF
```

Expand Down Expand Up @@ -96,7 +96,7 @@ kind: Provider
metadata:
name: provider-aws-dynamodb
spec:
package: xpkg.upbound.io/upbound/provider-aws-dynamodb:v1.1.0
package: xpkg.upbound.io/upbound/provider-aws-dynamodb:v1.17.0
EOF
```

Expand All @@ -106,9 +106,9 @@ View the new DynamoDB provider with `kubectl get providers`.
```shell {copy-lines="1"}
kubectl get providers
NAME INSTALLED HEALTHY PACKAGE AGE
provider-aws-dynamodb True True xpkg.upbound.io/upbound/provider-aws-dynamodb:v1.1.0 3m55s
provider-aws-s3 True True xpkg.upbound.io/upbound/provider-aws-s3:v1.1.0 13m
upbound-provider-family-aws True True xpkg.upbound.io/upbound/provider-family-aws:v1.1.0 13m
provider-aws-dynamodb True True xpkg.upbound.io/upbound/provider-aws-dynamodb:v1.17.0 3m55s
provider-aws-s3 True True xpkg.upbound.io/upbound/provider-aws-s3:v1.17.0 13m
upbound-provider-family-aws True True xpkg.upbound.io/upbound/provider-family-aws:v1.17.0 13m
```

## Create a custom API
Expand Down
2 changes: 1 addition & 1 deletion content/v1.16/getting-started/provider-aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ kind: Provider
metadata:
name: provider-aws-s3
spec:
package: xpkg.upbound.io/upbound/provider-aws-s3:v1.1.0
package: xpkg.upbound.io/upbound/provider-aws-s3:v1.17.0
EOF
```

Expand Down
10 changes: 5 additions & 5 deletions content/v1.16/getting-started/provider-azure-part-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ kind: Provider
metadata:
name: provider-azure-network
spec:
package: xpkg.upbound.io/upbound/provider-azure-network:v0.42.1
package: xpkg.upbound.io/upbound/provider-azure-network:v1.8.0
EOF
```

Expand Down Expand Up @@ -468,7 +468,7 @@ kind: Provider
metadata:
name: provider-azure-compute
spec:
package: xpkg.upbound.io/upbound/provider-azure-compute:v0.42.1
package: xpkg.upbound.io/upbound/provider-azure-compute:v1.8.0
EOF
```

Expand All @@ -478,9 +478,9 @@ View the new Compute provider with `kubectl get providers`.
```shell {copy-lines="1"}
kubectl get providers
NAME INSTALLED HEALTHY PACKAGE AGE
provider-azure-compute True True xpkg.upbound.io/upbound/provider-azure-compute:v0.42.1 25s
provider-azure-network True True xpkg.upbound.io/upbound/provider-azure-network:v0.42.1 3h
upbound-provider-family-azure True True xpkg.upbound.io/upbound/provider-family-azure:v0.42.1 3h
provider-azure-compute True True xpkg.upbound.io/upbound/provider-azure-compute:v1.8.0 25s
provider-azure-network True True xpkg.upbound.io/upbound/provider-azure-network:v1.8.0 3h
upbound-provider-family-azure True True xpkg.upbound.io/upbound/provider-family-azure:v1.8.0 3h
```

## Access the custom API
Expand Down
6 changes: 3 additions & 3 deletions content/v1.16/getting-started/provider-azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ kind: Provider
metadata:
name: provider-azure-network
spec:
package: xpkg.upbound.io/upbound/provider-azure-network:v0.42.1
package: xpkg.upbound.io/upbound/provider-azure-network:v1.8.0
EOF
```

Expand All @@ -54,8 +54,8 @@ Verify the provider installed with `kubectl get providers`.
```shell {copy-lines="1",label="getProvider"}
kubectl get providers
NAME INSTALLED HEALTHY PACKAGE AGE
provider-azure-network True True xpkg.upbound.io/upbound/provider-azure-network:v0.42.1 38s
upbound-provider-family-azure True True xpkg.upbound.io/upbound/provider-family-azure:v0.42.1 26s
provider-azure-network True True xpkg.upbound.io/upbound/provider-azure-network:v1.8.0 38s
upbound-provider-family-azure True True xpkg.upbound.io/upbound/provider-family-azure:v1.8.0 26s
```

The Network Provider installs a second Provider, the
Expand Down
10 changes: 5 additions & 5 deletions content/v1.16/getting-started/provider-gcp-part-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ kind: Provider
metadata:
name: provider-gcp-storage
spec:
package: xpkg.upbound.io/upbound/provider-gcp-storage:v0.41.0
package: xpkg.upbound.io/upbound/provider-gcp-storage:v1.9.0
EOF
```

Expand Down Expand Up @@ -114,7 +114,7 @@ kind: Provider
metadata:
name: provider-gcp-pubsub
spec:
package: xpkg.upbound.io/upbound/provider-gcp-pubsub:v0.41.0
package: xpkg.upbound.io/upbound/provider-gcp-pubsub:v1.9.0
EOF
```

Expand All @@ -123,9 +123,9 @@ View the new PubSub provider with `kubectl get providers`.
```shell {copy-lines="1"}
kubectl get providers
NAME INSTALLED HEALTHY PACKAGE AGE
provider-gcp-pubsub True True xpkg.upbound.io/upbound/provider-gcp-pubsub:v0.41.0 39s
provider-gcp-storage True True xpkg.upbound.io/upbound/provider-gcp-storage:v0.41.0 13m
upbound-provider-family-gcp True True xpkg.upbound.io/upbound/provider-family-gcp:v0.41.0 12m
provider-gcp-pubsub True True xpkg.upbound.io/upbound/provider-gcp-pubsub:v1.9.0 39s
provider-gcp-storage True True xpkg.upbound.io/upbound/provider-gcp-storage:v1.9.0 13m
upbound-provider-family-gcp True True xpkg.upbound.io/upbound/provider-family-gcp:v1.9.0 12m
```


Expand Down
Loading
Loading