This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/authentik/outposts/migrations/0018_kubernetesserviceconne...

21 lines
531 B
Python

# Generated by Django 4.1.3 on 2022-11-14 12:56
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("authentik_outposts", "0001_squashed_0017_outpost_managed"),
]
operations = [
migrations.AddField(
model_name="kubernetesserviceconnection",
name="verify_ssl",
field=models.BooleanField(
default=True, help_text="Verify SSL Certificates of the Kubernetes API endpoint"
),
),
]