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

DM-45676: Deploy Ook 0.10.0 #3608

Merged
merged 1 commit into from
Aug 14, 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
2 changes: 1 addition & 1 deletion applications/ook/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: ook
version: 1.0.0
appVersion: "0.9.1"
appVersion: "0.10.0"
description: >
Ook is the librarian service for Rubin Observatory. Ook indexes
documentation content into the Algolia search engine that powers the Rubin
Expand Down
3 changes: 0 additions & 3 deletions applications/ook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ Ook is the librarian service for Rubin Observatory. Ook indexes documentation co
| audit.ttlSecondsAfterFinished | int | `86400` | Time (second) to keep a finished job before cleaning up |
| config.algolia.documents_index | string | `"documents_dev"` | Name of the Algolia index for documents |
| config.logLevel | string | `"INFO"` | Logging level: "DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL" |
| config.registryUrl | string | `"http://sasquatch-schema-registry.sasquatch:8081"` | Cluster URL for the Confluent Schema Registry |
| config.subjectCompatibility | string | `"FORWARD"` | Schema subject compatibility. |
| config.subjectSuffix | string | `""` | Schema subject suffix. Should be empty for production but can be set to a value to create unique subjects in the Confluent Schema Registry for testing. |
| config.topics.ingest | string | `"lsst.square-events.ook.ingest"` | Kafka topic name for ingest events |
| fullnameOverride | string | `""` | Override the full name for resources (includes the release name) |
| global.baseUrl | string | Set by Argo CD | Base URL for the environment |
Expand Down
6 changes: 3 additions & 3 deletions applications/ook/templates/cronjob-audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ spec:
secretKeyRef:
name: {{ template "ook.fullname" . }}-kafka
key: "bootstrapServers"
- name: "KAFKA_SSL_CLUSTER_CAFILE"
- name: "KAFKA_CLUSTER_CA_PATH"
value: "/etc/kafkacluster/ca.crt"
- name: "KAFKA_SSL_CLIENT_CERTFILE"
- name: "KAFKA_CLIENT_CERT_PATH"
value: "/etc/kafkauser/user.crt"
- name: "KAFKA_SSL_CLIENT_KEYFILE"
- name: "KAFKA_CLIENT_KEY_PATH"
value: "/etc/kafkauser/user.key"
# From Vault secrets
- name: "ALGOLIA_APP_ID"
Expand Down
6 changes: 3 additions & 3 deletions applications/ook/templates/cronjob-ingest-updated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ spec:
secretKeyRef:
name: {{ template "ook.fullname" . }}-kafka
key: "bootstrapServers"
- name: "KAFKA_SSL_CLUSTER_CAFILE"
- name: "KAFKA_CLUSTER_CA_PATH"
value: "/etc/kafkacluster/ca.crt"
- name: "KAFKA_SSL_CLIENT_CERTFILE"
- name: "KAFKA_CLIENT_CERT_PATH"
value: "/etc/kafkauser/user.crt"
- name: "KAFKA_SSL_CLIENT_KEYFILE"
- name: "KAFKA_CLIENT_KEY_PATH"
value: "/etc/kafkauser/user.key"
# From Vault secrets
- name: "ALGOLIA_APP_ID"
Expand Down
6 changes: 3 additions & 3 deletions applications/ook/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ spec:
secretKeyRef:
name: {{ template "ook.fullname" . }}-kafka
key: "bootstrapServers"
- name: "KAFKA_SSL_CLUSTER_CAFILE"
- name: "KAFKA_CLUSTER_CA_PATH"
value: "/etc/kafkacluster/ca.crt"
- name: "KAFKA_SSL_CLIENT_CERTFILE"
- name: "KAFKA_CLIENT_CERT_PATH"
value: "/etc/kafkauser/user.crt"
- name: "KAFKA_SSL_CLIENT_KEYFILE"
- name: "KAFKA_CLIENT_KEY_PATH"
value: "/etc/kafkauser/user.key"
# From Vault secrets
- name: "ALGOLIA_APP_ID"
Expand Down
12 changes: 0 additions & 12 deletions applications/ook/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ ingress:
# -- Path prefix where Squarebot is hosted
path: "/ook"


# -- Resource requests and limits for Ook pod
# @default -- See `values.yaml`
resources:
Expand All @@ -85,17 +84,6 @@ config:
# -- Logging level: "DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"
logLevel: "INFO"

# -- Cluster URL for the Confluent Schema Registry
registryUrl: "http://sasquatch-schema-registry.sasquatch:8081"

# -- Schema subject suffix. Should be empty for production but can be set
# to a value to create unique subjects in the Confluent Schema Registry
# for testing.
subjectSuffix: ""

# -- Schema subject compatibility.
subjectCompatibility: "FORWARD"

topics:
# -- Kafka topic name for ingest events
ingest: "lsst.square-events.ook.ingest"
Expand Down
Loading