This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "success": true|false, // whether this request was a valid reCAPTCHA token for your site | |
| "score": number // the score for this request (0.0 - 1.0) | |
| "action": string // the action name for this request (important to verify) | |
| "challenge_ts": timestamp, // timestamp of the challenge load (ISO format yyyy-MM-dd'T'HH:mm:ssZZ) | |
| "hostname": string, // the hostname of the site where the reCAPTCHA was solved | |
| "error-codes": [...] // optional | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @section Scripts{ | |
| <script type="text/javascript"> | |
| grecaptcha.ready(function () { | |
| grecaptcha.execute('reCAPTCHA_site_key', { action: 'about' }) | |
| .then(function (token) { | |
| $.getJSON("/Home/RecaptchaV3Vverify?token=" + token, | |
| function (data) { console.log(data); }); | |
| }); | |
| }); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src='https://www.google.com/recaptcha/api.js?render=reCAPTCHA_site_key'></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dotnet new mvc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| kubectl get svc -n monitoring |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| helm install stable/grafana --name grafana --namespace monitoring -f .\grafana-values.yaml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rbac: | |
| create: true | |
| pspEnabled: true | |
| pspUseAppArmor: true | |
| namespaced: false | |
| serviceAccount: | |
| create: true | |
| name: | |
| replicas: 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "rules": [ | |
| { | |
| "name": "snapshotRule", | |
| "enabled": true, | |
| "type": "Lifecycle", | |
| "definition": | |
| { | |
| "filters": { | |
| "blobTypes": [ "blockBlob" ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "rules": [ | |
| { | |
| "name": "DenemeKural", | |
| "enabled": true, | |
| "type": "Lifecycle", | |
| "definition": { | |
| "filters": { | |
| "blobTypes": [ "blockBlob" ], | |
| "prefixMatch": [ "resimler" ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rbac: | |
| create: true | |
| imagePullSecrets: | |
| # - name: "image-pull-secret" | |
| ## Define serviceAccount names for components. Defaults to component's fully qualified name. | |
| ## | |
| serviceAccounts: | |
| alertmanager: |