LogoLogo
Tabnine websiteContact Sales
  • ๐Ÿ‘‹Welcome
    • Overview
      • Architecture
        • Deployment options
      • Security
      • Privacy
      • Protection
        • Provenance and Attribution
      • Personalization
        • Tabnineโ€™s Personalization in Depth
        • Connection: Global Codebase Awareness
      • AI Models
        • Tabnine's private and protected Universal models
        • Tabnine's fine-tuned AI models
      • Integrations
        • Atlassian Jira
      • System Requirements
      • Supported Languages
      • Supported IDEs
      • Tabnine Subscription Plans
        • Dev Preview
        • Dev
        • Pro
        • Enterprise (SaaS)
        • Enterprise (private installation)
    • Support & Feedback
  • ๐Ÿš€Getting started
    • Install
      • Client setup (SaaS)
        • VS Code
          • Install Tabnine in VS Code
          • Activate Tabnine in VS Code
        • JetBrains IDEs
          • Install Tabnine in a JetBrains IDE
          • Activate Tabnine in a JetBrains IDE
        • Visual Studio
          • Install Tabnine in Visual Studio 2022
          • Activate Tabnine in Visual Studio 2022
        • Eclipse
          • Install Tabnine in Eclipse
          • Activate Tabnine in Eclipse
        • Sign in
          • Using an email
          • Using an authentication token
      • Client setup (private installation)
        • Join your team (private installation)
        • VS Code (private installation)
        • JetBrains IDEs (private installation)
        • Visual Studio (private installation)
        • Eclipse (private installation)
    • Quickstart Guide
      • Menus and Icons
    • Getting the Most from Tabnine Code Completions
      • Pause (snooze)
    • Getting the Most from Inline Actions
    • Getting the Most from Tabnine Chat
      • Launching Tabnine Chat
      • Interacting with Tabnine Chat
      • Reviewing suggestions
      • Writing prompts
      • Chat Context
        • Understanding Context
        • Jira Connection
        • Context Scoping
      • Conversing with Tabnine Chat
      • Switching between chat AI models
      • Image Prompts
      • Tabnine's Prompting Guide
        • Getting Started
        • Basic Prompting
          • Be specific and clear
          • Define the context
          • Start a fresh conversation as appropriate
          • Include necessary details
          • Ask for examples
          • Be concise but complete
  • ๐Ÿ’ชSoftware Development with Tabnine
    • Overview
    • Plan
    • Create
    • Test
      • Intro to the Test Agent
      • Test Agent Workflow
      • Custom Commands
      • Generate Test Files with @Mentions
    • Review
    • Fix
    • Document
    • Explain
    • Maintain
  • ๐ŸญAdministering Tabnine
    • Start a team
    • Manage a team
    • SaaS
      • Tabnine Pro team admin
        • Purchase Tabnine Pro
        • Adding and inviting users to Tabnine Pro
        • Assigning an admin role to a team member
        • Removing a team member
        • Tabnine Pro: Manage subscription and billing
        • Tabnine Pro - Change your payment method
        • Tabnine Pro - Change plan from monthly to annual
        • Unsubscribe from Tabnine Pro plan
      • Joining a Tabnine Pro team
      • Enterprise (SaaS) team admin
        • Set up a Tabnine Enterprise (SaaS) account
        • Invite team members
        • Manage your team
        • AI models for Chat (Enterprise SaaS)
      • Enterprise (SaaS) team member
        • Join your Tabnine team by invitation email (team member)
        • Join Tabnine team by link (member)
    • Private installation
      • Server setup guide
        • Kubernetes (MicroK8s) Installation guide
        • Deployment guide
          • Tabnine update guide
        • Air-gapped deployment guide
      • Admin guide
        • Monitoring Tabnine
        • Prometheus Operator install
        • Audit logs
      • Managing your team
        • Tabnine teams
        • Roles in an enterprise
        • Inviting users to your team
        • Deactivating and reactivating users
        • Deleting PII data of a deactivated user
        • Reset user's password
        • Usage reports
          • Reports Glossary
          • CSV-based reports (V2)
            • Configuring scheduled CSV reports
            • CSV-based reports V1 (Depracted since version 5.7.0
          • Usage API
        • Settings
          • General
          • Single Sign-On (SSO)
          • Personalization (f.k.a. Workspace)
            • Connecting to Remote Repositories
          • Email
          • License
          • Models
          • Access Tokens
        • IdP Sync
      • Release Notes
  • ๐Ÿ“ฃProduct Updates
    • What's new?
      • What's new? (August 2024)
      • What's new? (July 2024)
      • What's new? (June 2024)
      • What's new? (May 2024)
      • What's new? (April 2024)
      • What's new? (March 2024)
      • What's new? (February 2024)
      • What's new? (January 2024)
Powered by GitBook
On this page
  • Upgrading to 5.x from a prior version
  • Summary - Putting it together

Was this helpful?

  1. Administering Tabnine
  2. Private installation
  3. Server setup guide
  4. Deployment guide

Tabnine update guide

Upgrading to 5.x from a prior version

Upgrading to version 5.x from earlier version includes few breaking changes, and key decisions you need to take. Please read thoroughly before proceeding with the upgrade procedure

Network policy defaults

To streamline installation and onboarding, strict network policy is now disabled by default. However, if you're upgrading from a version before 5.x and want to maintain the previous strict policy, add these definitions to your values.yaml file:

global: #under existing section
  networkPolicy:
    enabled: true

Important: If you upgrade without adding the above definitions to your values.yaml file, the Tabnine Enterprise Server may operate with a less restrictive network policy, potentially impacting its overall security. To ensure the highest level of security, please make the necessary additions to your values.yaml file before proceeding with the upgrade.

Open Registration mode

Tabnine now offers open-registration for a smoother onboarding experience. This means any user can sign up and join a default team without needing email invitations or invitation links.

If you're upgrading from a version before 5.x and want to maintain the previous invitation-based model, please add these definitions to your values.yaml file before upgrading:

auth: #under existing section
  noInvitationRequired: false

Key decision: If you upgrade without adding the definitions to values.yaml, users will be able to self-register for Tabnine without requiring admin invitations. If this aligns with your needs, no action is required. However, if you prefer to maintain the previous invitation-based model, please make the necessary changes to values.yaml before upgrading.

Important: the value modifications/additions should be done in the existing sections of your values.yaml. having duplicate sections in the values.yaml may cause unexpected behaviors.

Summary - Putting it together

Here's a summary of the required additions to your values.yaml file before upgrading to version 5.x, assuming you have an existing installation of an earlier version

global:
  networkPolicy:
    enabled: true
auth:
  noInvitationRequired: false

Last updated 3 months ago

Was this helpful?

๐Ÿญ