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

Extract db name as an argument to value.yaml #1107

Merged
merged 1 commit into from
Dec 19, 2024
Merged

Conversation

hackerwins
Copy link
Member

@hackerwins hackerwins commented Dec 19, 2024

What this PR does / why we need it:

Extract db name as an argument to value.yaml

Which issue(s) this PR fixes:

Fixes #

Special notes for your reviewer:

Does this PR introduce a user-facing change?:


Additional documentation:


Checklist:

  • Added relevant tests or not required
  • Addressed and resolved all CodeRabbit review comments
  • Didn't break anything

Summary by CodeRabbit

  • New Features

    • Introduced a new command-line argument for specifying the MongoDB database in the Yorkie deployment.
    • Added an initContainer to ensure the MongoDB provisioning job completes before starting the main application.
    • New configuration parameter for the database name added to the values file.
  • Bug Fixes

    • Improved deployment functionality by enhancing the configuration for MongoDB interaction.

Copy link

coderabbitai bot commented Dec 19, 2024

Walkthrough

This pull request modifies the Kubernetes deployment configuration for the Yorkie cluster by introducing a new database configuration mechanism. The changes include adding a specific database name argument to the Yorkie container and implementing an initialization container that waits for MongoDB provisioning to complete before starting the main application. The modifications enhance the deployment's flexibility and ensure proper database connection setup.

Changes

File Change Summary
build/charts/yorkie-cluster/templates/yorkie/deployment.yaml - Added --mongo-yorkie-database argument with dynamic database name
- Introduced initContainer named wait-for-sharded-db-provision
- Added environment variables NAMESPACE and JOB_NAME
- Specified serviceAccountName: yorkie-db-provisioning-job-account
build/charts/yorkie-cluster/values.yaml - Added new configuration parameter dbName: yorkie-meta under yorkie section

Sequence Diagram

sequenceDiagram
    participant InitContainer as Wait-for-DB Init Container
    participant MongoDB as MongoDB Provisioning Job
    participant YorkieApp as Yorkie Application

    InitContainer->>MongoDB: Check Job Status
    alt Job Not Complete
        InitContainer-->>InitContainer: Wait and Retry
    else Job Complete
        InitContainer->>YorkieApp: Allow Startup
        YorkieApp->>YorkieApp: Start with Specified Database
    end
Loading

Possibly related PRs

Suggested labels

enhancement 🌟

Suggested reviewers

  • krapie

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🔭 Outside diff range comments (1)
build/charts/yorkie-cluster/templates/yorkie/deployment.yaml (1)

Line range hint 38-54: Enhance init container reliability

The init container's wait logic has several potential issues:

  1. No timeout mechanism - could wait indefinitely
  2. No error handling for job failures
  3. Continuous kubectl calls might stress the API server

Consider implementing:

  1. A timeout mechanism
  2. Error handling for failed jobs
  3. Exponential backoff for status checks

Here's a suggested improvement:

 command:
   - /bin/sh
   - -c
   - |
     echo "Wait db start"
+    timeout=300  # 5 minutes timeout
+    start_time=$(date +%s)
+    backoff=5
     while true; do
+      current_time=$(date +%s)
+      elapsed=$((current_time - start_time))
+      if [ $elapsed -gt $timeout ]; then
+        echo "Timeout waiting for DB provisioning"
+        exit 1
+      fi
       job_status=$(kubectl get job -n $NAMESPACE $JOB_NAME -o jsonpath='{.status.conditions[?(@.type=="Complete")].status}')
       if [ "$job_status" = "True" ]; then
         echo "DB provisioning Job completed successfully!"
         break
+      elif [ "$job_status" = "False" ]; then
+        echo "DB provisioning Job failed!"
+        exit 1
       fi
       echo "Waiting for DB provisioning job to complete..."
-      sleep 5
+      sleep $backoff
+      backoff=$((backoff * 2))
+      [ $backoff -gt 60 ] && backoff=60
     done
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 3a615c6 and ee39526.

📒 Files selected for processing (2)
  • build/charts/yorkie-cluster/templates/yorkie/deployment.yaml (1 hunks)
  • build/charts/yorkie-cluster/values.yaml (1 hunks)
🔇 Additional comments (2)
build/charts/yorkie-cluster/templates/yorkie/deployment.yaml (2)

75-76: LGTM! Database argument correctly configured

The new --mongo-yorkie-database argument properly references the database name from values.yaml.


Line range hint 67-67: Verify service account permissions

The init container requires a service account with permissions to read job status. Ensure the yorkie-db-provisioning-job-account follows the principle of least privilege.

Let's check the service account configuration:

✅ Verification successful

The previous results show that the service account yorkie-db-provisioning-job-account is bound to a role named db-provisioning-job-status-reader, but we need to see the actual permissions granted by this role to verify if they follow the principle of least privilege.


Service account permissions follow least privilege principle

The yorkie-db-provisioning-job-account service account has appropriate minimal permissions through the db-provisioning-job-status-reader role, which only grants:

  • Read-only access (get, list verbs) to jobs resources in the batch API group
  • No write permissions or access to other resources

These permissions align perfectly with the stated requirement of reading job status for the init container, following the principle of least privilege.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Search for service account and role definitions
rg -A 10 "yorkie-db-provisioning-job-account" --type yaml

# Search for associated role bindings
rg -A 10 "kind: (Role|ClusterRole).*yorkie-db" --type yaml

Length of output: 2354


Script:

#!/bin/bash
# Let's search for the role definition that grants permissions
rg -A 10 "db-provisioning-job-status-reader" --type yaml

# Also search for any other roles or permissions related to db provisioning
rg -A 10 "kind: Role.*db.*provisioning" --type yaml

Length of output: 1753

build/charts/yorkie-cluster/values.yaml Show resolved Hide resolved
@hackerwins hackerwins merged commit 74e3457 into main Dec 19, 2024
1 check passed
@hackerwins hackerwins deleted the extract-db-name branch December 19, 2024 08:55
@coderabbitai coderabbitai bot mentioned this pull request Dec 19, 2024
3 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant