-
Notifications
You must be signed in to change notification settings - Fork 5
DOC-5692 Deprecated/archived repos #197
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
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
2ca185b
pulsar helm chart, burnell deprecated
aimurphy 71bd35b
remove dependency on luna-streaming-examples
aimurphy 02723e0
keep links to pulsar-helm-chart repo
aimurphy 2616845
Merge branch 'release/3.1_3.x' into doc-5692-313x
aimurphy 8fe1d1c
Merge branch 'release/3.1_3.x' into doc-5692-313x
aimurphy 0395690
helm chart name
aimurphy 42d9aa0
double heading
aimurphy 29d6116
ragstack-ai attributes
aimurphy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,71 @@ | ||
| extra: | ||
| broker: false | ||
| brokerSts: true | ||
| pulsarBeam: true | ||
| proxy: true | ||
| wsproxy: false | ||
| bastion: false | ||
|
|
||
| zookeeper: | ||
| replicaCount: 1 | ||
|
|
||
| bookkeeper: | ||
| replicaCount: 1 | ||
|
|
||
| broker: | ||
| component: "broker" # this has to match brokerSts naming | ||
| replicaCount: 0 | ||
|
|
||
| brokerSts: | ||
| component: "broker" # this has to match broker naming | ||
| replicaCount: 1 | ||
| functionsWorkerEnabled: true # to overcome the need for functions working | ||
| ledger: # the default assumes 2 bookies but this chart only deploys 1 | ||
| defaultEnsembleSize: 1 | ||
| defaultAckQuorum: 1 | ||
| defaultWriteQuorum: 1 | ||
|
|
||
| # this is a legacy value that the beam sub-chart uses | ||
| tokenServer: | ||
| allowedRoles: superuser,admin,websocket,proxy | ||
|
|
||
| proxy: | ||
| component: "proxy" | ||
| replicaCount: 1 | ||
| service: | ||
| ports: | ||
| - name: "pulsarbeam" | ||
| port: 8085 | ||
| protocol: TCP | ||
| - name: "http" | ||
| port: 8080 | ||
| protocol: TCP | ||
| - name: "pulsar" | ||
| port: 6650 | ||
| protocol: TCP | ||
|
|
||
| pulsarBeam: | ||
| component: "pulsarbeam" | ||
| replicaCount: 1 | ||
|
|
||
| image: | ||
| proxy: | ||
| repository: datastax/lunastreaming | ||
| pullPolicy: IfNotPresent | ||
| tag: 2.10_2.4 | ||
| brokerSts: | ||
| repository: datastax/lunastreaming | ||
| pullPolicy: IfNotPresent | ||
| tag: 2.10_2.4 | ||
| zookeeper: | ||
| repository: datastax/lunastreaming | ||
| pullPolicy: IfNotPresent | ||
| tag: 2.10_2.4 | ||
| bookkeeper: | ||
| repository: datastax/lunastreaming | ||
| pullPolicy: IfNotPresent | ||
| tag: 2.10_2.4 | ||
| pulsarBeam: | ||
| repository: kesque/pulsar-beam | ||
| pullPolicy: IfNotPresent | ||
| tag: "1.0.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| # Configuration for pulsar-client and pulsar-admin CLI tools | ||
|
|
||
| # URL for Pulsar REST API (for admin operations) | ||
| # For TLS: | ||
| # webServiceUrl=https://localhost:8443/ | ||
| webServiceUrl=http://127.0.0.1:8080/ | ||
|
|
||
| # URL for Pulsar Binary Protocol (for produce and consume operations) | ||
| # For TLS: | ||
| # brokerServiceUrl=pulsar+ssl://localhost:6651/ | ||
| brokerServiceUrl=pulsar://127.0.0.1:6650/ | ||
|
|
||
| # Authentication plugin to authenticate with servers | ||
| # e.g. for TLS | ||
| # authPlugin=org.apache.pulsar.client.impl.auth.AuthenticationTls | ||
| authPlugin= | ||
|
|
||
| # Parameters passed to authentication plugin. | ||
| # A comma separated list of key:value pairs. | ||
| # Keys depend on the configured authPlugin. | ||
| # e.g. for TLS | ||
| # authParams=tlsCertFile:/path/to/client-cert.pem,tlsKeyFile:/path/to/client-key.pem | ||
| authParams= | ||
|
|
||
| # Allow TLS connections to servers whose certificate cannot be | ||
| # be verified to have been signed by a trusted certificate | ||
| # authority. | ||
| tlsAllowInsecureConnection=false | ||
|
|
||
| # Whether server hostname must match the common name of the certificate | ||
| # the server is using. | ||
| tlsEnableHostnameVerification=false | ||
|
|
||
| # Path for the trusted TLS certificate file. | ||
| # This cert is used to verify that any cert presented by a server | ||
| # is signed by a certificate authority. If this verification | ||
| # fails, then the cert is untrusted and the connection is dropped. | ||
| tlsTrustCertsFilePath= | ||
|
|
||
| # Enable TLS with KeyStore type configuration in broker. | ||
| useKeyStoreTls=false | ||
|
|
||
| # TLS KeyStore type configuration: JKS, PKCS12 | ||
| tlsTrustStoreType=JKS | ||
|
|
||
| # TLS TrustStore path | ||
| tlsTrustStorePath= | ||
|
|
||
| # TLS TrustStore password | ||
| tlsTrustStorePassword= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| extra: | ||
| broker: false | ||
| brokerSts: true | ||
| pulsarSQL: true | ||
| proxy: false | ||
| wsproxy: false | ||
| bastion: false | ||
|
|
||
| pulsarSQL: | ||
| server: | ||
| workers: 1 | ||
| service: | ||
| type: ClusterIP | ||
|
|
||
| zookeeper: | ||
| replicaCount: 1 | ||
|
|
||
| bookkeeper: | ||
| replicaCount: 1 | ||
|
|
||
| broker: | ||
| component: "broker" # this has to match brokerSts naming due to a bug | ||
| replicaCount: 0 | ||
|
|
||
| brokerSts: | ||
| component: "broker" # this has to match broker naming due to a bug | ||
| replicaCount: 1 | ||
| functionsWorkerEnabled: true # to overcome the need for functions working | ||
| ledger: # the default assumes 2 bookies but this chart only deploys 1 | ||
| defaultEnsembleSize: 1 | ||
| defaultAckQuorum: 1 | ||
| defaultWriteQuorum: 1 | ||
|
|
||
| image: | ||
| brokerSts: | ||
| repository: datastax/lunastreaming-all #because we want connectors too | ||
| pullPolicy: IfNotPresent | ||
| tag: 2.10_2.4 | ||
| zookeeper: | ||
| repository: datastax/lunastreaming | ||
| pullPolicy: IfNotPresent | ||
| tag: 2.10_2.4 | ||
| bookkeeper: | ||
| repository: datastax/lunastreaming | ||
| pullPolicy: IfNotPresent | ||
| tag: 2.10_2.4 | ||
| pulsarSQL: | ||
| repository: datastax/lunastreaming | ||
| tag: 2.10_2.4 | ||
| pullPolicy: IfNotPresent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.