This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move image commands and distro CLI from riff to pfs
* switch to counterfeiter for mock generation because of vektra/mockery#213 * fix some tests which flake due to non-deterministic order of ranging over maps * update all the indirect requirements in go.mod which correspond to dependencies in riff Gopkg.lock to use the revision sha and run make to sanitise them * strip out Apache license headers Part of pivotal/pfs#44 Part of pivotal/pfs#45
- Loading branch information
0 parents
commit ea85a3f
Showing
10 changed files
with
1,676 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
spec: | ||
template: | ||
spec: | ||
containers: | ||
- args: | ||
- -stderrthreshold | ||
- INFO | ||
- -creds-image | ||
- gcr.io/knative-releases/a/b | ||
- -git-image | ||
- gcr.io/knative-releases/c/d |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
# Source: istio/templates/sidecar-injector-configmap.yaml | ||
|
||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: istio-sidecar-injector | ||
namespace: istio-system | ||
labels: | ||
app: istio | ||
chart: istio-1.0.1 | ||
release: RELEASE-NAME | ||
heritage: Tiller | ||
istio: sidecar-injector | ||
data: | ||
config: |- | ||
policy: disabled | ||
template: |- | ||
initContainers: | ||
- name: istio-init | ||
image: "docker.io/istio/proxy_init:1.0.1" | ||
args: | ||
- "-p" | ||
- [[ .MeshConfig.ProxyListenPort ]] | ||
- "-u" | ||
- 1337 | ||
- "-m" | ||
- [[ or (index .ObjectMeta.Annotations "sidecar.istio.io/interceptionMode") .ProxyConfig.InterceptionMode.String ]] | ||
- "-i" | ||
[[ if (isset .ObjectMeta.Annotations "traffic.sidecar.istio.io/includeOutboundIPRanges") -]] | ||
- "[[ index .ObjectMeta.Annotations "traffic.sidecar.istio.io/includeOutboundIPRanges" ]]" | ||
[[ else -]] | ||
- "*" | ||
[[ end -]] | ||
- "-x" | ||
[[ if (isset .ObjectMeta.Annotations "traffic.sidecar.istio.io/excludeOutboundIPRanges") -]] | ||
- "[[ index .ObjectMeta.Annotations "traffic.sidecar.istio.io/excludeOutboundIPRanges" ]]" | ||
[[ else -]] | ||
- "" | ||
[[ end -]] | ||
- "-b" | ||
[[ if (isset .ObjectMeta.Annotations "traffic.sidecar.istio.io/includeInboundPorts") -]] | ||
- "[[ index .ObjectMeta.Annotations "traffic.sidecar.istio.io/includeInboundPorts" ]]" | ||
[[ else -]] | ||
- [[ range .Spec.Containers -]][[ range .Ports -]][[ .ContainerPort -]], [[ end -]][[ end -]][[ end]] | ||
- "-d" | ||
[[ if (isset .ObjectMeta.Annotations "traffic.sidecar.istio.io/excludeInboundPorts") -]] | ||
- "[[ index .ObjectMeta.Annotations "traffic.sidecar.istio.io/excludeInboundPorts" ]]" | ||
[[ else -]] | ||
- "" | ||
[[ end -]] | ||
imagePullPolicy: IfNotPresent | ||
securityContext: | ||
capabilities: | ||
add: | ||
- NET_ADMIN | ||
restartPolicy: Always | ||
containers: | ||
- name: istio-proxy | ||
image: [[ if (isset .ObjectMeta.Annotations "sidecar.istio.io/proxyImage") -]] | ||
"[[ index .ObjectMeta.Annotations "sidecar.istio.io/proxyImage" ]]" | ||
[[ else -]] | ||
docker.io/istio/proxyv2:1.0.1 | ||
[[ end -]] | ||
args: | ||
- proxy | ||
- sidecar | ||
- --configPath | ||
- [[ .ProxyConfig.ConfigPath ]] | ||
- --binaryPath | ||
- [[ .ProxyConfig.BinaryPath ]] | ||
- --serviceCluster | ||
[[ if ne "" (index .ObjectMeta.Labels "app") -]] | ||
- [[ index .ObjectMeta.Labels "app" ]] | ||
[[ else -]] | ||
- "istio-proxy" | ||
[[ end -]] | ||
- --drainDuration | ||
- [[ formatDuration .ProxyConfig.DrainDuration ]] | ||
- --parentShutdownDuration | ||
- [[ formatDuration .ProxyConfig.ParentShutdownDuration ]] | ||
- --discoveryAddress | ||
- [[ .ProxyConfig.DiscoveryAddress ]] | ||
- --discoveryRefreshDelay | ||
- [[ formatDuration .ProxyConfig.DiscoveryRefreshDelay ]] | ||
- --zipkinAddress | ||
- [[ .ProxyConfig.ZipkinAddress ]] | ||
- --connectTimeout | ||
- [[ formatDuration .ProxyConfig.ConnectTimeout ]] | ||
- --statsdUdpAddress | ||
- [[ .ProxyConfig.StatsdUdpAddress ]] | ||
- --proxyAdminPort | ||
- [[ .ProxyConfig.ProxyAdminPort ]] | ||
- --controlPlaneAuthPolicy | ||
- [[ or (index .ObjectMeta.Annotations "sidecar.istio.io/controlPlaneAuthPolicy") .ProxyConfig.ControlPlaneAuthPolicy ]] | ||
env: | ||
- name: POD_NAME | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: metadata.name | ||
- name: POD_NAMESPACE | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: metadata.namespace | ||
- name: INSTANCE_IP | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: status.podIP | ||
- name: ISTIO_META_POD_NAME | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: metadata.name | ||
- name: ISTIO_META_INTERCEPTION_MODE | ||
value: [[ or (index .ObjectMeta.Annotations "sidecar.istio.io/interceptionMode") .ProxyConfig.InterceptionMode.String ]] | ||
imagePullPolicy: IfNotPresent | ||
securityContext: | ||
readOnlyRootFilesystem: true | ||
[[ if eq (or (index .ObjectMeta.Annotations "sidecar.istio.io/interceptionMode") .ProxyConfig.InterceptionMode.String) "TPROXY" -]] | ||
capabilities: | ||
add: | ||
- NET_ADMIN | ||
runAsGroup: 1337 | ||
[[ else -]] | ||
runAsUser: 1337 | ||
[[ end -]] | ||
restartPolicy: Always | ||
resources: | ||
[[ if (isset .ObjectMeta.Annotations "sidecar.istio.io/proxyCPU") -]] | ||
requests: | ||
cpu: "[[ index .ObjectMeta.Annotations "sidecar.istio.io/proxyCPU" ]]" | ||
memory: "[[ index .ObjectMeta.Annotations "sidecar.istio.io/proxyMemory" ]]" | ||
[[ else -]] | ||
requests: | ||
cpu: 10m | ||
[[ end -]] | ||
volumeMounts: | ||
- mountPath: /etc/istio/proxy | ||
name: istio-envoy | ||
- mountPath: /etc/certs/ | ||
name: istio-certs | ||
readOnly: true | ||
volumes: | ||
- emptyDir: | ||
medium: Memory | ||
name: istio-envoy | ||
- name: istio-certs | ||
secret: | ||
optional: true | ||
[[ if eq .Spec.ServiceAccountName "" -]] | ||
secretName: istio.default | ||
[[ else -]] | ||
secretName: [[ printf "istio.%s" .Spec.ServiceAccountName ]] | ||
[[ end -]] |
Oops, something went wrong.