46 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 3.1.3 on 2020-11-18 21:51
 | 
						|
 | 
						|
import django.db.models.deletion
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ("passbook_crypto", "0002_create_self_signed_kp"),
 | 
						|
        ("passbook_outposts", "0010_service_connection"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.RemoveField(
 | 
						|
            model_name="dockerserviceconnection",
 | 
						|
            name="tls",
 | 
						|
        ),
 | 
						|
        migrations.AddField(
 | 
						|
            model_name="dockerserviceconnection",
 | 
						|
            name="tls_authentication",
 | 
						|
            field=models.ForeignKey(
 | 
						|
                blank=True,
 | 
						|
                default=None,
 | 
						|
                help_text="Certificate/Key used for authentication. Can be left empty for no authentication.",
 | 
						|
                null=True,
 | 
						|
                on_delete=django.db.models.deletion.SET_DEFAULT,
 | 
						|
                related_name="+",
 | 
						|
                to="passbook_crypto.certificatekeypair",
 | 
						|
            ),
 | 
						|
        ),
 | 
						|
        migrations.AddField(
 | 
						|
            model_name="dockerserviceconnection",
 | 
						|
            name="tls_verification",
 | 
						|
            field=models.ForeignKey(
 | 
						|
                blank=True,
 | 
						|
                default=None,
 | 
						|
                help_text="CA which the endpoint's Certificate is verified against. Can be left empty for no validation.",
 | 
						|
                null=True,
 | 
						|
                on_delete=django.db.models.deletion.SET_DEFAULT,
 | 
						|
                related_name="+",
 | 
						|
                to="passbook_crypto.certificatekeypair",
 | 
						|
            ),
 | 
						|
        ),
 | 
						|
    ]
 |