Skip to content

Commit

Permalink
align docs to v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
denniskniep committed Oct 2, 2024
1 parent 8388147 commit 3ad95a5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ kind: Provider
metadata:
name: provider-temporal
spec:
package: xpkg.upbound.io/denniskniep/provider-temporal:v1.2.0
package: xpkg.upbound.io/denniskniep/provider-temporal:v1.5.0
packagePullPolicy: IfNotPresent
revisionActivationPolicy: Automatic
---
Expand Down Expand Up @@ -51,16 +51,25 @@ spec:
key: credentials
```

Provider Credentials without TLS:
```
{
"HostPort": "temporal:7233",
"UseTLS": false
}
```

Provider Credentials with TLS:
```
{
"HostPort": "temporal:7233",
"UseTLS": true,
"CACertPem": "-----BEGIN CERTIFICATE-----\nhere insert CA certificate\n-----END CERTIFICATE-----",
"CertPem": "-----BEGIN CERTIFICATE-----\nhere insert certificate\n-----END CERTIFICATE-----",
"KeyPem": "-----BEGIN RSA PRIVATE KEY-----\nhere insert key\n-----END RSA PRIVATE KEY-----",
"KeyPem": "-----BEGIN RSA PRIVATE KEY-----\nhere insert key\n-----END RSA PRIVATE KEY-----"
}
```

# Troubleshooting
Create a DeploymentRuntimeConfig and set the arg `--debug` on the package-runtime container:

Expand All @@ -85,7 +94,7 @@ kind: Provider
metadata:
name: provider-temporal
spec:
package: xpkg.upbound.io/denniskniep/provider-temporal:v1.2.0
package: xpkg.upbound.io/denniskniep/provider-temporal:v1.5.0
packagePullPolicy: IfNotPresent
revisionActivationPolicy: Automatic
runtimeConfigRef:
Expand Down
2 changes: 1 addition & 1 deletion examples/01-temporal-provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ kind: Provider
metadata:
name: provider-temporal
spec:
package: xpkg.upbound.io/denniskniep/provider-temporal:v1.3.0
package: xpkg.upbound.io/denniskniep/provider-temporal:v1.5.0
packagePullPolicy: IfNotPresent
revisionActivationPolicy: Automatic
runtimeConfigRef:
Expand Down

0 comments on commit 3ad95a5

Please sign in to comment.