21 lines
531 B
Python
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"
|
|
),
|
|
),
|
|
]
|