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
""" | |
Python script to log a new relic deployment information with minimsl dependencies | |
# Usage: | |
The scripts accepts either `list` or `new` commands | |
$ API_KEY="..." APP_ID="..."" python nr_deployment.py new 'rev id' "my title"\ | |
--description="some desc" --timestamp='2022-01-02' --user='test' | |
# Credentials configuration |
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
apiVersion: apps/v1 | |
kind: DaemonSet | |
metadata: | |
labels: | |
component: resolv | |
tier: node | |
name: resolv | |
namespace: default | |
spec: | |
selector: |
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
""" | |
Automatically define singleton resource groups | |
The structure of the python pulumi library is such that many properties | |
of resources are not easily modifyable after initialization. | |
This module functions by delaying the creation of resource attributes | |
within the ResourceGroup class until the class has been fully instantiated. | |
""" | |
from typing import Any, ClassVar, Iterable, TypeVar, Generic |
OlderNewer