diff --git a/config/billing.php b/config/billing.php index cee84ca..ea2600f 100644 --- a/config/billing.php +++ b/config/billing.php @@ -15,8 +15,8 @@ 'quotas' => [ 'nodes' => ['limit' => 1, 'soft' => false, 'reset_period' => null], 'swarms' => ['limit' => 1, 'soft' => false, 'reset_period' => null], - 'services' => ['limit' => 20, 'soft' => true, 'reset_period' => null], - 'deployments' => ['limit' => 100, 'soft' => true, 'reset_period' => 'daily'], + 'services' => ['limit' => 10, 'soft' => true, 'reset_period' => null], + 'deployments' => ['limit' => 20, 'soft' => true, 'reset_period' => 'daily'], ], ], [ @@ -30,7 +30,7 @@ 'nodes' => ['limit' => 5, 'soft' => true, 'reset_period' => null], 'swarms' => ['limit' => 1, 'soft' => false, 'reset_period' => null], 'services' => ['limit' => 10, 'soft' => true, 'reset_period' => null], - 'deployments' => ['limit' => 100, 'soft' => true, 'reset_period' => 'daily'], + 'deployments' => ['limit' => 20, 'soft' => true, 'reset_period' => 'daily'], ], ], ], diff --git a/resources/js/Pages/Nodes/Partials/DockerRegistries.vue b/resources/js/Pages/Nodes/Partials/DockerRegistries.vue index 968909e..08c12ef 100644 --- a/resources/js/Pages/Nodes/Partials/DockerRegistries.vue +++ b/resources/js/Pages/Nodes/Partials/DockerRegistries.vue @@ -146,8 +146,13 @@ const submitForm = async () => { diff --git a/resources/js/Pages/Nodes/Partials/S3Storages.vue b/resources/js/Pages/Nodes/Partials/S3Storages.vue index b4c2daa..b6dfaf8 100644 --- a/resources/js/Pages/Nodes/Partials/S3Storages.vue +++ b/resources/js/Pages/Nodes/Partials/S3Storages.vue @@ -167,7 +167,9 @@ const submitForm = async () => { v-model="item.secretKey" type="password" class="w-full" - placeholder="**********" + :placeholder=" + item.dockerName ? 'keep secret key' : '**********' + " />