This commit is contained in:
kimsanghoon1
2019-12-03 11:27:27 +09:00
2 changed files with 3 additions and 3 deletions

View File

@@ -35,8 +35,8 @@ steps:
--project "$${PROJECT}" \
--zone "$${CLOUDSDK_COMPUTE_ZONE}"
_GATEWAY_IP=$$(kubectl get -o jsonpath="{.status.loadBalancer.ingress[0].ip}" svc gateway)
_GATEWAY_PORT=$$(kubectl get -o jsonpath="{.spec.ports[0].port}" svc gateway)
_GATEWAY_IP=$$(kubectl get -o jsonpath="{.status.loadBalancer.ingress[0].ip}" svc gateway --ignore-not-found)
_GATEWAY_PORT=$$(kubectl get -o jsonpath="{.spec.ports[0].port}" svc gateway --ignore-not-found)
cat <<EOF | kubectl apply -f -
apiVersion: v1

View File

@@ -27,7 +27,7 @@
<div align="right">
<v-btn text v-if=" $route.path != '/' && $store.state.role == 'USER_ADMIN' " @click="showEdit"> Edit</v-btn>
<v-btn text v-if="$route.path != '/' " @click="showDetail"> DETAIL</v-btn>
<v-btn text v-if=" $route.path != '/' && $store.state.login == true" @click="showBuy"> BUY</v-btn>
<v-btn text v-if=" $route.path != '/' " @click="showBuy"> BUY</v-btn>
</div>
</v-list>
</v-card>